Copycat
Limits: 1s, 512 MB
Read an integer variable and print it.
Input
The input will contain an integer A (A < 200000000).
Output
Print the integer.
Samples
Solution:#include<stdio.h> int main() { int n;
scanf("%d", &n);
printf("%d",n); }
** You can also use long long or long int. But there is no testcases for that.
0 Comments