Fonction d'entrée dans Django

m=input("Enter First Name:")
n=input("Enter Second Name:")

x=m+" "+n

print(x)
Mayur Parmar