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