#include <iostream>
using namespace std;
// void  name for the void function is written  (int)
void sum(int a, int b){
    cout<<a+b<<endl;
}

int main() {
    int x;
    int y;
    cin>>x;
    cin>>y;
    sum(x , y);
}

Embed on website

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