#include<bits/stdc++.h> using namespace std; int main(){ int a=5,b=8; if(a>b){ cout<<"max="<<a<<endl; } else{ cout<<"max="<<b<<endl; } }