fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int addNumber(int x,int y){
  5. int answer = x/y;
  6. return answer;
  7. }
  8.  
  9. int main() {
  10. cout << addNumber(56,4);
  11. return 0;
  12. }
Success #stdin #stdout 0s 5296KB
stdin
Standard input is empty
stdout
14