fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. cout<<"The C++14 Program."<<endl;
  6. cout<<"Hello Podna!"<<endl;
  7. cout<<"Hello Sista!"<<endl;
  8. cout<<"Let's Add 2 Numbers."<<endl;
  9. int num1 = 25;
  10. int num2 = 25;
  11. int num3 = (num1 + num2);
  12. cout<<"NUM1 "<<num1<<" NUM2 "<<num2<<" NUM3 "<<num3<<endl;
  13. return 0;
  14. }
Success #stdin #stdout 0s 5300KB
stdin
Standard input is empty
stdout
The C++14 Program.
Hello Podna!
Hello Sista!
Let's Add 2 Numbers.
NUM1 25 NUM2 25 NUM3 50