#include <stdio.h>

int main()
{
	printf("%d %d %d", sizeof (double), sizeof (long double), sizeof 1.);
	return 0;
}