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

RESTful APIs with CRUD Operations in Laravel 12| (2025)

  RESTful APIs serve as the foundation of modern web development. They follow a set of rules called Representational State Transfer (REST) t...

Powered by Blogger.