🎫 [문제]
두 개의 자연수를 입력받아 사칙연산을 수행하는 프로그램을 작성하라.
[input]
8 3
[output]
11
5
24
2
import sys
sys.stdin = open("input.txt")
a, b = map(int, input().split())
print(a+b)
print(a-b)
print(a*b)
print(int(a/b))
'# 3. APS > SWEA' 카테고리의 다른 글
SWEA # Python_D1_2019_더블더블 ✅ (0) | 2021.02.15 |
---|---|
SWEA # Python_D1_2029_몫과 나머지 출력하기 ✅ (0) | 2021.02.15 |
SWEA # Python_D1_2025_N줄덧셈 ✅ (0) | 2021.02.15 |
SWEA # Python_D1_2027_대각선 출력하기 ✅ (0) | 2021.02.15 |
SWEA # Python_D1_2043_서랍의 비밀번호 ✅ (0) | 2021.02.15 |