[ create a new paste ] login | about

Link: http://codepad.org/b1WGTg2X    [ raw code | output | fork ]

C++, pasted on Oct 22:
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <iostream>
using namespace std;
int main() 
{
    cout << "Your key is : ";
    cout << (10780076>>1);
    cout << (3911784>>2);
    cout << (6781952>>3);
    cout << (14059488>>4);
    cout << endl;

    cout << "Enjoy the game!" << endl;
}


Output:
1
2
Your key is : 5390038977946847744878718
Enjoy the game!


Create a new paste based on this one


Comments: