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.