good Котлин

This commit is contained in:
2020-07-30 17:20:33 +09:00
parent 7556b59380
commit 9b41715e0a
3 changed files with 29 additions and 0 deletions

11
zeta_C/completed/10869.c Normal file
View File

@@ -0,0 +1,11 @@
#include<stdio.h>
int main() {
int a; int 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\n", a%b);
}