#include <stdio.h>
void add(int a,int b)
{
   printf("%d",a+b);
}
int main()
{
    int sum=add(5,10);
    
}