fork download
  1. #include <iostream>
  2. using namespace std;
  3. /*This program was created by Ashfaq Ahmad
  4.   in 2006 ,when he started c++ newliy*/
  5.  
  6. int main() {
  7. int a=12;
  8. int b =15;
  9. cout<<"the value of a:"<<a<<endl<<"the value of b:"<<b<<endl;
  10. return 0;
  11. }
Success #stdin #stdout 0s 5316KB
stdin
Standard input is empty
stdout
the value of a:12
the value of b:15