#include <iostream>
using namespace std;
int main()
{
int number;
int guess;
cout << "Try and guess what number I'm thinking1 (1-10)\n";
cin >> guess;
number = 4;
cout << "You think it's " << 4 << "?\n";
while ( number != guess )
{
cout << "You got it wrong! Try again but you'll get it wrong again anywayz!\n";
cin >> guess;
}
cout << "Awww shucks! You got me! Here's your prize!\n";
cout << "You receive 280 gold from scoundrel.\n";