fun f = () -> int {
	int y = 0;
	for (x in range(1,9)) {
		y = y + x;
	}
	return y;
};

int n = print_int(f());
