triusis.cpp: In function 'int main()':
triusis.cpp:16:14: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
16 | if(k < l.size() && a[i] >= 0) l[k] = a[i];
| ~~^~~~~~~~~~
triusis.cpp:17:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
17 | else if(k == l.size()) l.push_back(a[i]);
| ~~^~~~~~~~~~~