Week 2 Programming Assignment 1
a = int(input()) //taking input from the user and ,int is converting the number into integer type
print(a) //printing the value inputted from the user
Working of the above problem
Input Output
10 10
12 12
67 67
100 100
Comments
Post a Comment