#include<stdio.h>

double fn()
{
	return 1.1 ;
}

int main()
{
	printf( "%d", sizeof( fn ) );
	return 0;
}