#include <stdio.h>

int main(void) {
	
	char *a="aaaa";
	char *b="aaab";
	int cmp;
	
	cmp = strcmp (a,b);
	
	printf("%d",cmp);
	
	return 0;
}
