#include <iostream>
using namespace std;

int main() {
	// your code goes here
	int arr[10];
	cout<<sizeof(arr)<<endl;
	double c = 100.2738;
	char d[12] = {c};
	cout<<d[0];
	return 0;
}