Problem Statement
Write a program that accepts a number, n, and outputs the same.
Input
The only line contains a single integer.
Output
Output the answer in a single line.
Constraints
- 0 ≤ n ≤ 105
Sample Input
123
Sample Output
123
SOLUTION USING C LANGUAGE:-#include <stdio.h> int main(void)
{ // your code goes here int p; scanf("%d", &p); printf("%d",p); return 0; }
No comments:
Post a Comment