#include <iostream>
int main()
{
    std::cout<<"Enter two numbers:"<<std::endl;
    int V1 = 0, V2 = 0;
    std::cin>>V1 >> V2;
    std::cout << "the sum of " << V1 << " and " << V2 << " is "<< V1 + V2 << std::endl;
    return 0;
}

Embed on website

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