weight = input("Enter your weight on Earth: ")
marsWeight = 0.38 * weight
print ("you weigh "+ str(marsWeight) + " on Mars")

