name = input("Enter your name: ") #age = input("Enter your age: ") # age is a string! age = int(input("Enter your age: ")) # age is an integer #new_age = int(age) + 5 new_age = age + 5 print("Hi ", name, ". You are ", age, " years old.", sep="") #print("In 5 years, you will be", age + 5) print("In 5 years, you will be", new_age) pi = 3.1416 print("pi to one decimal =", round(pi, 1)) print("pi to two decimal =", round(pi, 2)) print("pi to the 10's place =", round(pi, -1)) print(min(4, 7, 10, -3))