PY
py
1
2
3
4
5
6
7
8
9
10
11
12
13
# over 10 yards output High Five
# less than 1 yard output shh
# any other number, output Ra! multiplied by the number
yards= int(input())
if yards > 10:
print("High Five")
elif yards < 1:
print("shh")
else:
print("Ra!" * yards)
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run