+ 4
input() asks for text from the user.
print() makes a text output for the user to view.
here is an example code, that will make the users input an output:
a=input()
print(a)
# "a" is a variable, that you can assign stuff to. I made it the same as input()



