Write a program that asks two people for their names; stores the names in variables called name1 and name2; says hello to both of them.
Answer:
Code:
name1 = input("Enter name 1: ")
name2 = input("Enter name 2: ")
print("Hello", name1)
print ("Hello", name2)