Number Mirror Problem Code: START01 (codeChef)
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
Solution
n=int(input()) print(n)
Comments
Post a Comment