#include<stdio.h>
int fx (){ printf("Hello x !\n"); return 1;}
int fy (){ printf("Hello y !\n"); return 2;}

void test_call(int x, int y){}

int main(){
	test_call(fx(),fy());
}