Cometin'

BOJ-2338 - Python

2020-08-16 at Algorithm category

숫자 n과 m을 입력받은 후 +, -, x 연산을 하야 출력하는 문제

n = int(input())
m = int(input())
print(n+m)
print(n-m)
print(n*m)

hyesungoh

Personal blog by hyesungoh.

I like to share my knowledge for those who wandering in issue.