这题。。。

只能说:n / k罢了。。。

但是:

代码没有最短,只有更短!

#include <stdio.h>

int n, k;

int main()
{
    return scanf("%d%d", &n, &k), printf("%d", n/k) % 1;
}