12 lines
351 B
Python
12 lines
351 B
Python
monat = int(input("Monat 1-12: "));
|
|
|
|
if monat == 3 or monat == 4 or monat == 5:
|
|
print("Frühling");
|
|
elif monat == 6 or monat == 7 or monat == 8:
|
|
print("Sommer");
|
|
elif monat == 9 or monat == 10 or monat == 11:
|
|
print("Herbst");
|
|
elif monat == 12 or monat == 1 or monat == 2:
|
|
print("Winter");
|
|
else:
|
|
print("Dieses Monat gibts nicht!");
|