people=30cars=40trucks=15ifcars>people:print"We should take the cars."elifcars<people:print"We should not take the cars."else:print"We can't decide."iftrucks>cars:print"That's two many cars."eliftrucks<cars:print"Maybe we could take the truck."else:print"We still can't decide."ifpeople>trucks:print"Alright, lets's just take the trucks."else:print"Fine, let's stay home then."