#include int somma(int,int); int main (){ int sum = somma(4,5); printf("%d\n",sum); return 0; } int somma(int x, int y){ return x+y; }