// 102 minus 37
#include <iostream>

using namespace std;

int main()
{
    int a=102;
    int b=37;
    cout<<"vamos a restar 102 menos 37"<<endl;
    
    cin>>a;
    cin>>b;
    int resta= a-b;
    
    cout<<resta;
    return 0;
    
}

Embed on website

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