#include <iostream>
using namespace std;

int main () {
    int a = 7;
    int b = 89;

    int c = a + b ;// la suma
    cout << c << endl;
    return 0;
}

Embed on website

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