#include <stdio.h>

int main(void) {
	// your code goes here
	int d=3.12e3;
	//int d=3.12;
	printf("%d\n",d);
	printf("%.0f\n",pow(2,3));
	return 0;
}
