intInput

zahl = int(input('Please input a int number'))
print(zahl)



# Umwandeln einer Eingabe in Int
def inputInt(title):
while True:
try:
inputString = input(title)
value = int(inputString)
return value
except:
pass

floatInputs
openfile (Read)