Skip to content

Commit 886404b

Browse files
author
hangyeol
committed
115차 1번 문제풀이
1 parent 7245a24 commit 886404b

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import sys
2+
3+
def main():
4+
input = sys.stdin.readline
5+
n = int(input())
6+
A = []
7+
8+
for _ in range(n):
9+
num = int(input())
10+
A.append(num)
11+
12+
print(list(A))
13+
14+
if __name__ == '__main__':
15+
main()

0 commit comments

Comments
 (0)