@ -19,4 +19,15 @@ int main()
max = b;
}
cout << "Maximum:" << max;
int min;
if (a < b) {
min = a;
else {
min = b;
cout << "Minimum:" << min;