0
Cheer creator 4/5 Help pls!
a = int(input()) if a >= 10: print('High Five') elif a < 1: print('shh') else: print(a * 'Ra!')
1 Answer
+ 3
*********
10 yards further down the field, you stand up and give your friend a high five.
a = int(input())
if a > 10:
print('High Five')
elif a < 1:
print('shh')
else:
print(a * 'Ra!')
it's ten yards further so shouldn't be a >= 10 instead a > 10 in your first if statement