Computer Science, asked by Chandler5310, 10 months ago

Write a program to accept the name of a friend, his address and display them in a format NAME ADDRESS

Answers

Answered by scify
0

Answer:

in python:

Name= input("Name")

Address = input("Address")

print(Name, " ", Address)

Similar questions