#include <stdio.h>
int Sum(int value1, int value2);
void main()
{
int s;
s = Sum(2, 3);
}
int Sum(int value1, int value2);
{
int result = value1 + value2 ;
return result;
print("합은 %d", result);
}
To embed this project on your website, copy the following code and paste it into your website's HTML: