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

InputOutput
2
2


 Solve in c:

#include<stdio.h>
int main(){

int a;
scanf("%d",&a);
printf("%d\n",a);
return 0;


}



No comments

Most View Post

Recent post

Codeforces Round 925 (Div. 3) 1931D. Divisible Pairs Solution

    Problem Link  :   https://codeforces.com/contest/1931/problem/D S olution in C++: /// Author : AH_Tonmoy #include < bits / stdc ++. ...

Powered by Blogger.