#include <stdio.h>

int getShit() {
	return 5;
}

int main(void) {
	// your code goes here
	if (int n = getShit() && n > 0) {
		printf ("n = %u", ++n);
	}
	return 0;
}
