#include <stdio.h> 
int main() 
{ 
	int a; 
	int b = 5; 
	a = 0 && --b; 
	printf("%d %d", a, b); 
} 
