python input to integer code example
Example 1: how to get int input in python
num = int(input("inter your number: "))
print(num)
Example 2: user input of int type in python
#python program
#taking int input from user
#printing them
#num1 from user
num1 = int(input("Enter a number of type int"))
print(num1)