0
Cheer creator (Solved)
Why program does not pass test #3? yards = int(input()) if yards > 10: print("High five") elif yards >= 1: print("Ra!" * yards) else: print("shh")
1 Antwort
+ 4
There is a typo in your solution, you should review what you are supposed to print.