Learn practical skills, build real-world projects, and advance your career
flyingPlaneCost = 5000
people = 29
peoplePerCost = 200
pepleTickets = people * peoplePerCost
profit = pepleTickets - flyingPlaneCost
print("Profit is",profit)
Profit is 800
jovian.commit(project='EXERCISE-Sol')