mycode/Baekjoon/c/10869.c
notalentprogrammer f00b19f981 20250506 baekjoon
2025-05-06 22:00:09 +09:00

8 lines
126 B
C
Executable File

#include <stdio.h>
int main() {
int a, b;
scanf("%d %d",&a,&b);
printf("%d %d %d %d %d",a+b,a-b,a*b,a/b,a%b);
return 0;
}