aboutsummaryrefslogtreecommitdiff
path: root/src/Lecture4/live/live2.py
blob: 041bda36e5f4c68661abdd77b9995d777e1b1323 (plain)
1
2
3
4
5
6
7
x = int(input("Input something: "))

while x > 10:
	print("Large number!", x)
	x = x - 1
	
print("Bye")

Generated with cgit - Back to sebastiano.tronto.net