22 lines
295 B
Python
22 lines
295 B
Python
y = 1
|
|
|
|
print "wahsdhasd"
|
|
|
|
while y == 1:
|
|
x = input("NUMBER NOW PLS: ")
|
|
|
|
print("Your number is: ", x)
|
|
|
|
z = 1
|
|
x = int(z)
|
|
|
|
if z % 2:
|
|
print("X is divisible by 2")
|
|
else:
|
|
print("X is divisible by 2")
|
|
|
|
if z == 0:
|
|
break
|
|
|
|
print("You chose to stop")
|