Version:0.9 StartHTML:0000000105 EndHTML:0000003104 StartFragment:0000000152 EndFragment:0000003070
cut and paste, then complile boys.



#include 
#include 

int main ()
{

    char x = 106;
    cout << x;
    x -= 58;
    cout << x;
    cout << x;
    cout << " ";
    x += 66;
    cout << x << " ";
    x++;
    cout << x;
    x -= 4;
    cout << x << " ";
    x -= 13;
    cout << x;
    x += 13;
    cout << x << x;
    x += 5;
    cout << x;
    x += 5;
    cout << x << " ";
    x -= 19;
    cout << x;
    x += 15;
    cout << x;
    x -= 9;
    cout << x << x << endl;
    cout << endl << endl << endl;
    x -= 58;
    cout << "       ";
    cout << x;
    cout << endl << endl << endl;
    cout << endl << endl << endl;
    cout << "             ";
    x += 27;
    cout << x;
    x += 24;
    cout << x;
    cout << endl << endl << endl;
    cout << endl << endl << endl;
    cout << "Props to Maul for the quote.  And you're damn lucky this isn't ";
    cout << "a virus.  =)";
    cout << endl << endl << endl;
    cout << endl << endl << endl;
    system ("PAUSE");
    return 0;
}