Write a program to accept the name of a friend, his address and display them in a format NAME ADDRESS
Answers
Answered by
0
Answer:
in python:
Name= input("Name")
Address = input("Address")
print(Name, " ", Address)
Similar questions