Hello Programmers,
The solution for codechef Number Mirror problem is given below.
Problem Link:- https://www.codechef.com/problems/START01
/*
* Author:- Rahul Malhotra
* Source:- Programming Vidya
* Description:- Solution for Codechef Number Mirror problem
* Problem Link:- https://www.codechef.com/problems/START01
* Website:- www.programmingvidya.com
*/
#include<iostream>
using namespace std;
int main()
{
// * Initializing variables
int n;
// * Accepting the number 'n' and displaying the same
cin>>n;
cout<<n;
return 0;
}
Happy Coding..!!