#include "chu.h"


int chu(int a, int b)
{
	if (0 != b)
	{
		return a / b;
	}
	else
	{
		return 0;
	}
}