BOJ10869

CYSSSSSSSSS·2023년 6월 14일

알고리즘

목록 보기
6/83

문제10869

문제

  • a,b 를 입력 받고 두 수를 이용한 사칙연산을 구하시오.
a,b = map(int,input().split())
print(a+b)
print(a-b)
print(a*b)
print(a//b)
print(a%b)
profile
개발자 되고 싶어요

0개의 댓글