#include <stdio.h>

int main()
{
	int a=0, b=2;
	int c;

	c=b/a;
return(0);
}

	
