#include <stdio.h>

int main(void) {
	int a = 3 / 2;
	int b = -3 / 2;
	printf("3 / 2 = %d\n", a);
	printf("-3 / 2 = %d\n", b);
	return 0;
}
