Problem
Write a program that takes a number N as the input, and prints it to the output.
Input Format
The only line contains a single integer.
Output Format
Output the answer in a single line.
Constraints
Sample 1:
Input
Output
123
123
Sample 2:
Input
Output
15
15
Solution:
#include <iostream>
using namespace std;
int main() {
// your code goes here
int n;
cin>>n;
cout<<n;
return 0;
}
Comments
Post a Comment