Online C++ 14 Compiler
										
										
#include <iostream>

using namespace std;

int main() {
    int x=25;
    int y=40;
    int z=x+y;

    cout<<"Sum of x+y = " << z;
}
                                
                                

Output Results

										
Sum of x+y = 65