You are on page 1of 1

a = int(input(“what is your number for a: ”))

if a > 21:
b = int(input(“your number is bigger than the number i am
guessing”)
if a < 21:
print(“your number is less than the number i am guessing”)
c = int(input(“try again type your number: ”))
if c == 21:
print(“correct”)
if c != 21:
print(“sorry guess again.”)
d = int(input(“my number I am guessing is less than 29 but bigger
than 15: ”))
if d == 21:
Print(“correct”)
else:
print(“Game Over”)

You might also like