6 lines
137 B
Python
6 lines
137 B
Python
name = input("Entrez votre nom : ")
|
|
age = int(input("Entrez votre âge : "))
|
|
|
|
print(f"Bonjour, je m'appelle {name} et j'ai {age} ans.")
|
|
|