fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. int x =5;
  7. int y=6;
  8. int a;
  9. a=x+y;
  10.  
  11. cout<<"a:"<<a<<endl;
  12.  
  13. }
Success #stdin #stdout 0.01s 5444KB
stdin
Standard input is empty
stdout
a:11