We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 01ef267 + 0e31f0b commit c2bb880Copy full SHA for c2bb880
learntosurf/Baekjoon/1_입출력과_사칙연산/1000.py
@@ -4,4 +4,4 @@
4
5
# 다른 풀이
6
a, b = map(int, input().split())
7
-print(a+b)
+print(a+b)
learntosurf/Baekjoon/1_입출력과_사칙연산/2588.py
@@ -2,7 +2,6 @@
2
num1 = int(input())
3
num2 = int(input())
-
print(num1 * (num2 % 10))
print(num1 * (num2 % 100 // 10))
8
print(num1 * (num2 // 100))
0 commit comments