#include <stdio.h>
int sum(int m,int n){
	return m+n;
}
int main(void) {
	// your code goes here
	int m=3,n=2;
	printf("%d",sum(m,n));
	return 0;
}
