Enter the value of an integer variable and print it on screen

'''
Course: M.Sc.IT (IMS) Semester-1
University: Ganpat University
Subject: Introduction of Python Programming
'''
#4. Enter the value of an integer variable
#   and print it on screen. 

i = int(input("Enter Integer Value : "))
print(i)

Comments