| Copycat
Limits 1s, 512 MB
Read an integer variable and print it.
Input
The input will contain an integer ().
Output
Print the integer.
Input | Output |
---|---|
2 |
2 |
N.B.: It's better if you solve this by your own. Thank you!
Toph Online Judge Copycat Solve in C :
//Solved by Intesar#include <stdio.h>
int main() { int x; scanf("%d",&x);
printf("%d",x); return 0;}
0 Comments