Skip to content

Commit 68128fc

Browse files
committed
1052 - Month
1 parent f81c771 commit 68128fc

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

Beginner/1052.py

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
month = int(input())
2+
3+
if month == 1:
4+
print("January")
5+
elif month == 2:
6+
print("February")
7+
elif month == 3:
8+
print("March")
9+
elif month == 4:
10+
print("April")
11+
elif month == 5:
12+
print("May")
13+
elif month == 6:
14+
print("June")
15+
elif month == 7:
16+
print("July")
17+
elif month == 8:
18+
print("August")
19+
elif month == 9:
20+
print("September")
21+
elif month == 10:
22+
print("October")
23+
elif month == 11:
24+
print("November")
25+
elif month == 12:
26+
print("December")
27+
28+

0 commit comments

Comments
 (0)