# Exercice 1

def bonjour():
    nom = input("Quel est ton nom ?")
    prenom = input("Quel est ton prénom ?")
    print("Bonjour", prenom, nom, ",comment vas-tu ?")

bonjour()