524,680 views
30 votes
30 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 Hamish Smith
by
3.1k points

1 Answer

17 votes
17 votes

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 Zombie
by
2.7k points