#include <stdio.h>
 
int main(void) {
	float a = 5.678;
	int b;
	// this will generate error
	b = a << 3;
	printf("%f", b);
	return 0;
}