#include <stdio.h>
#include <stdint.h>
int main(void) {
	// your code goes here
	uintptr_t start = 0;
	uintptr_t end = 12;
	printf("%u", end - start);
	return 0;
}
