Skip to content

Commit 6e19f04

Browse files
author
hangyeol
committed
123차 2차 문제풀이 (푸는 중)
1 parent 4bb6843 commit 6e19f04

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import sys
2+
3+
def main():
4+
input = sys.stdin.readline
5+
6+
N = int(input())
7+
8+
for i in range(N):
9+
x, y = map(int, input().split())
10+
11+
if __name__ == '__main__':
12+
main()

0 commit comments

Comments
 (0)