有一个样例一直过不去,不知道为什么,求大佬指教
#include<bits/stdc++.h>
using namespace std;
int main()
{
string s;
cin>>s;
int hh = (s[0]-'0') * 10 + (s[1] - '0');
if(hh<12) cout<<"Only "<<s<<". Too early to Dang."<<endl;
else{
hh-=12;
if(s[3]!='0' || s[4]!='0') hh++;
for(int i=0;i<hh;i++){
cout<<"Dang";
}
}
return 0;
}