#include <stdio.h>

int main(void) {
	// your code goes here
	if(({
		int a = 1;
		int b = 2;
		a + b == 3;
	})) {
		printf("Yes, it's 3!");
	}
	
	return 0;
}
