1# Take input from user and store it as a variable. E.g. I store the input as 'user_inp'
2user_inp = input("Enter anything you want: ")
3
4#Now you can print it by using print function
5print("You entered ", user_inp)
6# If you don't want "You entered " you can simply write as:- print(user_inp)