Skip to content

Commit d84d0a0

Browse files
authored
[BOJ] A+B / 브론즈5 / 7분(O) -m "https://www.acmicpc.net/problem/1000"
1 parent cb41c73 commit d84d0a0

File tree

1 file changed

+7
-0
lines changed
  • learntosurf/Baekjoon/1_입출력과_사칙연산

1 file changed

+7
-0
lines changed
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)