Posts

Showing posts from October, 2020

C++ | Addition

#include <iostream> using   namespace   std ; int   main (){      int  amount1;     cin>>amount1;           int  amount2;     cin>>amount2;           int  sum = amount1+amount2;          cout<<sum<<endl;      return   0 ; }

C++ | "Hello World" code

  #include <iostream> using   namespace   std ; int   main (){     cout<< "Hello World" <<endl;      return   0 ; }