Answer:
Following are the program to this question:
val=input("")#defining val variable that inputs value
print('Hello',val,', we welcome you...')#defining print method, that print input value with the message
Output:
Pat
Hello Pat , we welcome you...
Explanation:
In the above given, python code a "val" variable, and the print that is inbuilt method is declared, inside the "val" variable the input method is used, which is used to input the value from the user side.
In the next line, the print method has declared, which is used to print the value with the message.