#include <stdio.h>

int three(){
	return 3;
}

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