Copycat - Easy Problems - Solution to Toph.co Online Judge Problem

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

InputOutput
2
2


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.

Post a Comment

0 Comments