1#variable for the input:
2variable_name = input("please add your input: ")
3print(variable_name)
4
5#example
6#output(Type Hi please: ")
7#print(output)
8#Output will be Hi if you typed hi
1print("Say: 'Hi!'")
2answer = input()
3print(answer)
4
5##Output##
6#Say: 'Hi!'
7#Hi!