#include <stdio.h>
#include <stdlib.h>
#include <math.h>

int main(int ac, char **av)
{
	printf("hello world %f\n", (double)sqrt(128.));
	return 0;
}