Instagram
youtube
Facebook
Twitter

Python print() function CodeChef Solution

Problem

Write a program that takes a number N as the input, and prints it to the output.

Input Format

The only line contains a single integer.

Output Format

Output the answer in a single line

Constraints

  • 0≤N≤10^5

Sample Input

123

Sample Output

123

Solution

n=int(input(“Enter a number: “))
print(“you entered: “,n)

Steps to solve this problem -

  • Take input from the user.

  • Using print() function display the output on the screen.