Number Mirror Codechef Solution

                      Number Mirror


Problem Statement

Write a program that accepts a number, n, and outputs the same.

Input

The only line contains a single integer.

Output

Output the answer in a single line.

Constraints

  • 0 ≤ n ≤ 105

Sample Input

123

Sample Output

123

              Program Code

#include <iostream>
using namespace std;

int main() {
	// your code goes here
	int number;
	cin>>number;
	cout<<number;
	return 0;
}

Comments