#include<iostream> using namespace std; void min(int a,int b){ if(a<b){ cout<<a; }else{ cout<<b; } } int main(){ int c,d; cin>>c>>d; min(c,d); }