5 lines
193 B
Python
5 lines
193 B
Python
#!/home/andrei/it_school/bin/python3
|
|
|
|
varsta = input("Introduceti varsta dumneavoastra: ")
|
|
nume = input("Introduceti numele dumneavoastra: ")
|
|
print("Salut,", nume + "!", "Ai", varsta, "ani.") |