1234567891011121314
# include <iostream> using namespace std; int main() { int nbrToFind = 13; int guess = 0; while(guess != nbrToFind) { cin >> guess; cout << "You entered " << guess << endl; }cout << "The two numbers match " << endl; }