79601000

Date: 2025-04-30 19:40:20
Score: 1
Natty:
Report link

This is the code I used after playing with it.

par = int(input())
strokes = int(input())
if par not in range(3,6) :
    print('Error')
    
elif par - strokes == 2:
    print('Eagle')
elif par - strokes == 1:
    print('Birdie')
elif par == strokes:
    print('Par')
elif strokes - par == 1:
    print('Bogey')
   

 
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: StuSS777