#include <stdio.h>

int main(void) {
	// your code goes here
	int b = 5;
	int a = (b && b++>30);
	printf("b=%d\na=%d\n", b, a);
	return 0;
}
