#include <stdio.h>

int Sum(int value1, int value2)
{
    int result = value1 + value2;
    return result;
}
void main()
{
    int a = 2, b = 3, value;
    value = Sum(a, b);
    printf("합은 %d", value);
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: