#include "chu.h" int chu(int a, int b) { if (b != 0) { return a / b; } else { return 0; } }