#include <stdio.h>
#include <stdbool.h>

void check(int val){
	printf("ip: %d\n", val);
}

int main(void) {
	// your code goes here
	check(1);
	check(0);
	check(1>0);
	check(1<0);
	
	return 0;
}
