Run ID:1517

提交时间:2023-10-14 16:40:46

#include<iostream> using namespace std; int main(){ long long a,b,c,t; cin>>a>>b>>c; if(a<b){ t=a; } else{ t=b; } if(t<c){ cout<<t<<endl; } else{ cout<<c<<endl; } return 0; }