2.WAP to take input of any integer from the user and display it.
2.WAP to take input of any integer from the user and display it.
Code:
x=int(input("Enter the number\n"))
print("User have enter" ,x," number")
Output:
Enter the number
5
User have enter 5 number
Comments
Post a Comment