Ad Code

Responsive Advertisement

Toph | Copycat | Beginner

 | Copycat

Limits 1s, 512 MB

Read an integer variable and print it.

Input

The input will contain an integer A (-200000000 < A < 200000000).

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;
}

Post a Comment

0 Comments

Ad Code

Responsive Advertisement