xxxxxxxxxx
int add(int a, int b);
int add(int x, int y)
{
return x+y;
}
void main()
import std.stdio;
writeln(add(5,6));