Create BebekUntukTeman.c

master
MD15 2020-04-10 12:09:24 +07:00 committed by GitHub
parent 7d67c3120c
commit 5752c3dd50
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
#include <stdio.h>
int main () {
int n,m;
scanf("%d %d",&n,&m);
printf("masing-masing %d\n", n/m);
printf("bersisa %d\n", n%m);
}