일기장
총방문자
오늘
어제
백준 10869번 사칙연산 해결
a, b = map(int, input().split()) print(a+b) print(a-b) print(a*b) print(a//b) print(a%b) 해결 완료 힌트 보고도 엄청 애먹었다.