#include <stdio.h> #include <stdbool.h> int main( void ) { char s[81]; scanf( "%[^\n]", s ); bool same = false; for( const char* p=s; *p && !same; ++p ) same = *p==p[1]; puts( same?"YES":"NO" ); }
#include <stdio.h> int main() { char ch,ch1=0; while((ch=getchar())!='\n') { if(ch1==ch) { printf("YES"); return 0; } ch1=ch; } printf("NO"); return 0; }