Coding Test/Python

Coding Test/Python

백준: 10869 - 사칙연산

https://www.acmicpc.net/problem/10869a,b = map(int, input().split()) # 새로 알게된 방법print(a + b)print(a - b)print(a * b)print(int(a / b))print(a % b)

agor
'Coding Test/Python' 카테고리의 글 목록 (2 Page)