Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <algorithm>
- using namespace std;
- int max(int a, int b) {
- if(a > b) {
- return a;
- }
- else {
- return b;
- }
- }
- int main()
- {
- int a, b;
- cin >> a >> b;
- cout << max(a, b) << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement