#include using namespace std; int main() { vector a( 3 ); cin >> a[0] >> a[1] >> a[2]; sort( a.begin(), a.end() ); cout << a[0] << endl; }