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
ANSWER:
#include <iostream>
using namespace std;
int main(){
int a;
cin>>a;
cout<<a;
return 0;
}
Comments
Post a Comment