Python
print("hello")
name = input("what's you name?")
print("hello", name)
color = input("what's your favorite color?")
if color == "orange": 
  print("YOOO best color lets goo")
if color != "orange":
  print("you like" , color , "? well too bad orange is better")
age = input("how old are you?")
if int(age) < 18: 
  print("hello fello child")
if int(age) > 18: 
  print("hello senior citizen")
if int(age) == 18: 
  print("im afraid thats inccorrect")