Skip to content

Commit 9b1ee13

Browse files
committed
[BOJ] A+B / 브론즈5 / 7분(O)
https://www.acmicpc.net/problem/1000
1 parent 7145934 commit 9b1ee13

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

  • learntosurf/Baekjoon/1_입출력과_사칙연산
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# 내 풀이
2+
A, B = input().split()
3+
print(int(A) + int(B))
4+
5+
# 다른 풀이
6+
a, b = map(int, input().split())
7+
print(a+b)

0 commit comments

Comments
 (0)