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

int add(int a, int b, int c){
	return a+b+c;
}
int main() {
	int x;
	x=add(2,3,4);
	printf("x=%d\n",x);
	return 0;
}
