#include <stdio.h>

int three(){
	return 3;
}
int main(void) {
	int x;
	x = three();
	printf("x=%d\n",x);
	return 0;
}
