輸出第三行跟第二行的位置會互換
#include<bits/stdc++.h>
using namespace std;
int main()
{
cin.tie(0);
cin.sync_with_stdio(0);
int a,b,c;
cin>>a>>b>>c;
if(a>=60 && a<100){
cout<<"1\n";
}
else{
cout<<"0\n";
}
printf("%.2f\n",(b+1)/10.00);
if(a>=c){
cout<<a<<endl;
}
else{
cout<<c<<endl;
}
return 0;
}