main() {
	assert f(f(f(1))) == 4
}

f(x int) -> int {
	return x + 1
}