Skip to content

Commit aeccb2b

Browse files
committed
[#5] Feat: Add 과제 안 내신 분..?
1 parent 14ca1d5 commit aeccb2b

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

5597.py

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# 과제 안 내신 분..?
2+
3+
students = [str(i+1) for i in range(30)]
4+
5+
for i in range(28):
6+
n = int(input())
7+
students[n-1] = ''
8+
9+
for student in students:
10+
if student != '':
11+
print(student)

0 commit comments

Comments
 (0)