fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int HuyMax(int a,int b)
  5. {
  6. if(a > b) return a;
  7. else return b;
  8. }
  9.  
  10. int main(){
  11. int c = 9;
  12. int d = 7;
  13. cout << HuyMax(10,14);
  14. }
  15.  
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
14