Agorithm/백준 알고리즘
백준 알고리즘 2338번 긴자리 계산(python)
kimjinho1
2020. 4. 8. 21:40
728x90
반응형
단순한 계산 문제이다.
A = int(input())
B = int(input())
print(A+B)
print(A-B)
print(A*B)
728x90
반응형