728x90
반응형

단순 사칙연산 문제이다.

파이썬은 오버플로우가 없어서 그냥 곱한 것을 출력해주면 된다.

n1, n2 = map(int, input().split())
print(n1*n2)
728x90
반응형

+ Recent posts