xxxxxxxxxx
weight = float(input("How many pounds does your suitcase weigh? "))
if weight > 50:
print("There is a $25 charge for luggage that heavy.")
print("Thank you for your business.")
xxxxxxxxxx
age = 22
# See if the person is 18 or not
if age == 18:
print("You're old enough to drive!")
else:
print("You may be too young to drive, " +
"or already older than 18.")