#include <stdio.h>

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

int main(void) {
	// your code goes here
	printf("%d",fun(2,3));
	return 0;
}
