fork download
  1. #include <iostream>
  2.  
  3. #define R return
  4.  
  5. int add(int a, int b)
  6. {
  7. R a + b;
  8. }
  9.  
  10. int main()
  11. {
  12. std::cout << add(8, 9);
  13. R 0;
  14. }
Success #stdin #stdout 0s 15240KB
stdin
Standard input is empty
stdout
17