fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. // variable declare
  6. int a=10,b=3;
  7. cout<<a+b;
  8. float f=23;
  9. bool c=false;
  10. cout<<f;
  11. cout<<c;
  12.  
  13.  
  14. return 0;
  15. }
Success #stdin #stdout 0s 5324KB
stdin
Standard input is empty
stdout
13230