#include <stdio.h>
int main(void)
{
int A = 0;
int B = 0;
scanf("%d %d", &A, &B);
if (A < 1 or ((B > 10000) and (B <= 0)))
return 0;
printf("%d\n", A+B);
printf("%d\n", A-B);
printf("%d\n", A*B);
printf("%d\n", A/B);
printf("%d\n", A%B);
return 0;
}
'Computer Science > 백준 알고리즘' 카테고리의 다른 글
[백준] 10872번 팩토리얼 (C++) (0) | 2022.06.21 |
---|---|
[백준] 10870번 피보나치 수 5 (파이썬) (0) | 2022.06.17 |
[백준] 10866번 덱 (파이썬) (0) | 2022.06.17 |
[백준] 10829번 이진수 변환 (파이썬) (0) | 2022.06.17 |
[백준] 10828번 스택 (파이썬) (0) | 2022.06.17 |