#include #include int main() { char line[ 50 ]; int is_home_address( char * ); while ( gets( line ) != NULL ) if ( is_home_address( line ) ) puts( "YES" ); else puts( "NO" ); return EXIT_SUCCESS; }