#include<iostream>#include<iomanip>//才能使用maxusing namespace std;int main(){ int a,b,c;//宣告 cin>>a>>b>>c;//輸入 cout<<max(a,max(b,c))<<"\n";}