求两个整数的余数。
两个正整数 n, m。
输出一个整数,为 n 除以 m 的余数。
12 5
2
#include <stdio.h> int main() { int n, m; scanf("%d%d", &n, &m); printf("%d", n%m); return 0; }