#include <iostream>
#include <vector>
#include <algorithm>
using std::vector;
using std::cout;
using std::endl;
int main()
{
vector<int> vec{ 13, 12, 300, 1, 98 };
cout << *max_element(vec.begin(), vec.end()) << endl;
cout << *min_element(vec.begin(), vec.end()) << endl;
return 0;
}
/*
run:
300
1
*/