fork download
  1. #include <iostream>
  2.  
  3. int main() {
  4. float a = 1563;
  5. float b =245;
  6.  
  7. float c = a+b;
  8. std::cout << c;
  9. return 0;
  10. }
Success #stdin #stdout 0.01s 5280KB
stdin
Standard input is empty
stdout
1808