code

14 September 2018

Views: 92

print ("What’s the first name of your favorite celebrity?")
Celebfirstname = input()
print ("The first name of your favorite celebrity is,",Celebfirstname)
print ("What’s the surname name of your favorite celebrity?")
CelebSurname = input()
print ("The surname name of your favorite celebrity is,", CelebSurname)
print ("The name of your favorite celebrity is,", Celebfirstname + CelebSurname)

pastelink.net/codes01

Share