#Sam Ola
#9/29/2021
#I learned how to use inputs in this lesson
#I didn't have any difficulties with this assginment
# review and run code
print("enter a small int: ")
small_int = input()
print("small int: ")
print(small_int)
input()
print("enter a name or number")
test_input = input()
student_name = input("enter the student name: ")
print("Hi " + student_name)
city = input("What is the name of the city?")
print("The city name is " + city)
name = input("What is your name?")
age = input("What is your age?")
get_mail = input("Would you like to be on the emial list?")
print("name:" + name)
print("age:" + age)
print("yes/no:" + get_mail)