/*----------------------------------------------------------------------*/
/*                            Guess.cpp                                 */
/* Authored By : H.P.Kasmaei                                            */
/* Last Update : March 6, 2009                                          */
/* http://www.hpkclasses.ir/                                            */
/*----------------------------------------------------------------------*/

#include <iostream.h>

int main() {
  int secret = 15;
  int guess; // No initialization needed here
  do {
    cout << "guess the number: ";
    cin >> guess; // Initialization happens
  }   while(guess != secret);
  cout << "You got it!" << endl;
}
