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