Solution for Codechef START01 | Number Mirror

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..!!

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s