Odpowiedź:
#include <iostream>
#include <string>
using namespace std;
Wyjaśnienie:
Pewnie standardowe rozpoczęcie programu. A ta funkcja na tym screenie jest beznadziejna. Jak masz stringi, to możesz je bezpośrednio porównywać w następujący sposób:
bool teksty_sa_identyczne(string t1, string t2){
return t1 == t2;
}