fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int x=5;
  5. float y=60.56;
  6. int z=10;
  7. string A="pippo";
  8. char C='F';
  9.  
  10. int main() {
  11.  
  12. cout<<x+y+z<<endl;
  13. cout<<A<<endl;
  14. cout<<C<<endl;
  15.  
  16.  
  17. return 0;
  18. }
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
75.56
pippo
F