9 lines
128 B
Python
9 lines
128 B
Python
alter = int(input ("Wie alt bist du?"))
|
|
|
|
print (alter)
|
|
|
|
if alter <=18:
|
|
print ("Du junges Schwein")
|
|
else:
|
|
print ("ehre")
|