#include <stdio.h>//第０講演習 01-1

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