#include <stdio.h>
int main( int argc, char *argv[] )
{
	printf("Checking with if statement\n"); 	int i=54;
	if (i%2==0)
	printf("The number is even\n");  
	printf("Checking with while statement\n");  
	while(i%2==0)
	{printf("The number is even\n"); 	break;}
 
	return 0 ;
 
}
				I2luY2x1ZGUgPHN0ZGlvLmg+CmludCBtYWluKCBpbnQgYXJnYywgY2hhciAqYXJndltdICkKewoJcHJpbnRmKCJDaGVja2luZyB3aXRoIGlmIHN0YXRlbWVudFxuIik7CglpbnQgaT01NDsKCWlmIChpJTI9PTApCglwcmludGYoIlRoZSBudW1iZXIgaXMgZXZlblxuIik7CgkKCXByaW50ZigiQ2hlY2tpbmcgd2l0aCB3aGlsZSBzdGF0ZW1lbnRcbiIpOwoJCgl3aGlsZShpJTI9PTApCgl7cHJpbnRmKCJUaGUgbnVtYmVyIGlzIGV2ZW5cbiIpOwoJYnJlYWs7fQoJCglyZXR1cm4gMCA7CgkKfQ==