fun sum_two = (x: int, y: int) -> int {
	fun adding = (x: int, y: int) -> int {return x + y;};
    return adding(x, y);
};