Number Mirror ||codechef||beginner solution ||programming info

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

Share:

No comments:

Post a Comment

Translate

Recommended platforms

  1. codechef
  2. hackerrank
  3. codeforces
  4. leetcode
  5. hackerearth

Popular Posts

programming_info. Powered by Blogger.

Blog Archive

Recent Posts

other platforms

  • geeks for geeks
  • w3schools
  • codepen
  • skillshare
  • udemy

Pages

reader support Support