99.1k views
4 votes
Need help coding this it uses input and I need to use the words good and morning

Need help coding this it uses input and I need to use the words good and morning-example-1
User Jwerre
by
5.4k points

1 Answer

1 vote

Answer:

x = input ("Enter a word: ")

y = input ("Enter a word: ")

print ( x, " ", y)

Step-by-step explanation:

This is the simplest way to write it using Python.

User Denis Sadowski
by
5.0k points