# get player's name from the user
# get the number of homeruns so far
# get the number of games played so far

GAMES_IN_SEASON = 162

player_name = input("Enter player's name: ")
homeruns_sofar = input('How many home runs has ' + player_name + ' hit so far this season?')
games_sofar = input('How many games has ' + player_name + "'s team played so far this season?")

homeruns_sofar = int(homeruns_sofar)
games_sofar = int(games_sofar)

projected_homeruns = round(homeruns_sofar * GAMES_IN_SEASON / games_sofar)

# homers so far * 162 / games played so far

# player’s name is projected to hit number home runs in 162 games.

print(player_name, 'is projected to hit', projected_homeruns, 'homeruns in', GAMES_IN_SEASON, 'games.')

if projected_homeruns > 73:
    print(player_name + ' is projected to break the major league season home run record.')
    
