Question #92635

Write a program that uses two input statements to get two as input. Then, print the word on one line separated by a space

Expert's answer

a = input("Enter word1: ")

b = input("Enter word2: ")

print("{} {}".format(a,b))


LATEST TUTORIALS
APPROVED BY CLIENTS