Advertisement
Guest User

Untitled

a guest
Aug 17th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #include<iostream>
  2. using namespace std;
  3. string max(int a,int b)
  4. {
  5. if (a>b)
  6. return a>b;
  7. else
  8. return a<b;
  9. }
  10. int main()
  11. {
  12. int d,e;
  13. cin >> d;
  14. cin >> e;
  15. cout << max(d,e) <<endl;
  16. return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement