#include <stdio.h>

int add(int a,int b){
	return a+b;
}

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