Toph easy problem (Copycat)
Question :
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
Solve in c:#include<stdio.h>
int main(){
int a;
scanf("%d",&a);
printf("%d\n",a);
return 0;
}
No comments