본문 바로가기
백준

[10869] 사칙연산

by Jcoder 2017. 4. 21.

#include <stdio.h>

int main()
{
int A,B;
scanf("%d %d", &A, &B);
printf("%d\n", A+B);
printf("%d\n", A-B);
printf("%d\n", A*B);
printf("%d\n", A/B);
printf("%d", A%B);
return 0;
}


'백준' 카테고리의 다른 글

[2558] A+B - 2  (0) 2017.04.21
[10430] 나머지  (0) 2017.04.21
[1008] A/B  (0) 2017.04.21
[10998] A*B  (0) 2017.04.21
[11719] 그대로 출력하기 2  (0) 2017.04.21