Min
Loganek
template <class T> const T& min ( const T& a, const T& b );
zwraca minimalną wartość spośród dwóch podanych jako argumenty wartości
Przykład
```cpp#include <iostream>
#include <algorithm>
int main()
{
int x = 10;
int y = 20;
std::cout<<std::min(x, y); //wyświetli 10
}