void main(void){
char name[15];
cout << "text";
cin >> name;
cout << "text" << name;
cout << "text";
char pass[6];
do{
cout << "text";
cin >> pass;
if(strcmp(pass, "harry") == 0){
cout << "text";
}else{
cout << "text";
int answer;
cout << "text";
cin >> answer;
if(answer == 0){
cout << "text";
}
if(answer == 1){
cout << "test";
}
}
}while( (answer == 1) || (strcmp(pass, "harry")) );
}