@ -13,4 +13,8 @@ int main()
if (a > b)
cout << "max " << a;
else cout << "max " << b;
if (a < b)
cout << "min " << a;
else cout << "min " << b;
}