budget = eval(input('Enter budget here: '))
i_proc = eval(input('Enter international collection here: '))
d_proc = eval(input('Enter domestic collection here: '))
profit = i_proc + d_proc - 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!!! ')
Enter budget here: 50000
Enter international collection here: 1000000
Enter domestic collection here: 800000
1750000
Average movie
Comments
Leave a comment