no
Copy
样例解释
样例1:
1 < 5 < 7 且 7 > 6 > 4
#include<bits/stdc++.h>
using namespace std;
string a;
bool k=true;
int main(){
cin>>a;
for(int i=1;i<=2;i++)
if(a[i]<=a[i-1])k=false;
for(int i=3;i<=4;i++)
if(a[i]>=a[i-1])k=false;
if(k)cout<<"yes";
else cout<<"no";
return 0;
}