Entrada del usuario de INT Tipo en Python
#python program
#taking int input from user
#printing them
#num1 from user
num1 = int(input("Enter a number of type int"))
print(num1)
Bst Barracuda