Skip to content

Commit c2bb880

Browse files
authored
Merge pull request #14 from learntosurf/main
soomi jeong / 3월 3주차 (Re) / 3문제
2 parents 01ef267 + 0e31f0b commit c2bb880

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

learntosurf/Baekjoon/1_입출력과_사칙연산/1000.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
# 다른 풀이
66
a, b = map(int, input().split())
7-
print(a+b)
7+
print(a+b)

learntosurf/Baekjoon/1_입출력과_사칙연산/2588.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
num1 = int(input())
33
num2 = int(input())
44

5-
65
print(num1 * (num2 % 10))
76
print(num1 * (num2 % 100 // 10))
87
print(num1 * (num2 // 100))

0 commit comments

Comments
 (0)