Prog#249: sum of 2 nos

/*
sum of 2 nos
Program#249
*/
#include<stdio.h>
main()
{
int a,b,c;
scanf("%d %d", &a, &b);
c=sum(a,b);
printf("%d", c);
}
sum(x,y)
int x,y;
{
int z;
z=x+y;
return z;
}

@w.lohman interactive terminal