budget = int(input())
domestic = int(input())
international = int(input())
profit = domestic + international - budget
print(profit)
if profit <= 0:
print('Super flop movie!! ')
elif profit < 500000:
print('Flop movie!Waste of money. Waste of time. ')
elif 500000 <= profit < 2000000:
print('Average movie ')
elif 2000000 <= profit < 3000000:
print('Success!! ')
else:
print(' Super Hit!!! ')
Comments
Leave a comment