int func(void) {
	return 4;
}

float gv = 4 - func();

int main(void) {
	return 0;
}