Run ID:155085

提交时间:2026-05-31 14:16:08

#include<bits/stdc++.h> using namespace std; int main (){ int a,b,c; cin>>a>>b>>c; if(a<c){ if(a<b){ //y cout<<a; }else{ cout<<c; } }else{ //n if(b<c){ cout<<b; }else{ cout<<c; } } return 0; }