Several inputs

Just like programs can have several print() statements, they can have several input() statements as well.
name = input()
surname = input()
print(name, '-', surname)
In case the user inputs Adam and then hits enter, the name will have a value of Adam. After that, the user can enter Smith and the surname will have a value of Smith. Having that, the program would print Adam - Smith in the output.
 

Challenge

Write a program that takes 3 inputs and prints them side by side, separated by a space. So, all the 3 values should be printed on a single line.
Here is an example of the program execution:
Input
Output
I really love Python!!!
I really love Python!!!
 

Constraints

Time limit: 2 seconds

Memory limit: 512 MB

Output limit: 1 MB

To check your solution you need to sign in
Sign in to continue