백준 10869 (python)

Grace Goh·2022년 9월 1일
0

백준 (python)

목록 보기
2/27
post-custom-banner

나누어서 몫만 나오게 하려면 A//B를 하면 된다.

# 정답
A, B = map(int, input().split())
print(A+B)
print(A-B)
print(A*B)
print(A//B)
print(A%B)

오답
A/B를 계산하면 자동으로 부동소수점float으로 계산된다.

profile
Español, Inglés, Coreano y Python

0개의 댓글