/*shitft01-.*/
#include <stdio.h>

int main(void) {
	// your code goes here

	(3>5)?
	printf("3 is larger than 5\n"):printf("3 is smaller than 5\n");
	

/*	short a=12,b=100,c=-50;
	
	printf("%d shift 1bit LeftSide---%d\n",a,a<<1);
	printf("More shift 1bit LeftSide---%d\n",a<<2);
	printf("More shift 1bit LeftSide---%d\n",a<<3);	
	printf("More shift 1bit LeftSide---%d\n",a<<4);
	printf("\n");
	
	printf("%d shift 1bit RightSide---%d\n",b,b>>1);
	printf("More shift 1bit RighttSide---%d\n",b>>2);
	printf("More shift 1bit RightSide---%d\n",b>>3);	
	printf("More shift 1bit RightSide---%d\n",b>>4);
	printf("\n");
	
	printf("%d shift 1bit LeftSide---%d\n",c,c<<1);
	printf("%d shift 1bit RightSide---%d\n",c,c>>1);
	printf("\n");	
*/	
	
	return 0;
}
