Name: Anonymous 2011-02-07 16:32
Coding and spreading of trojans/viruses/worms is forbidden.
1 /*
2 anuslevel.cpp
3 BEGIN LICENSE: Goatse Prostate License (GPL)
4 g g
5 o / \ \ / \ o
6 a| | \ | | a
7 t| `. | | : t
8 s` | | \| | s
9 e \ | / / \\\ --__ \\ : e
10 x \ \/ _--~~ ~--__| \ | x
11 * \ \_-~ ~-_\ | *
12 g \_ \ _.--------.______\| | g
13 o \ \______// _ ___ _ (_(__> \ | o
14 a \ . C ___) ______ (_(____> | / a
15 t /\ | C ____)/ \ (_____> |_/ t
16 s / /\| C_____) | (___> / \ s
17 e | ( _C_____)\______/ // _/ / \ e
18 x | \ |__ \\_________// (__/ | x
19 * | \ \____) `---- --' | *
20 g | \_ ___\ /_ _/ | g
21 o | / | | \ | o
22 a | | / \ \ | a
23 t | / / | | \ |t
24 s | / / \__/\___/ | |s
25 e | / | | | |e
26 x | | | | | |x
27 Viewing this goatse gives you the right to freely
28 use, modify, and distribute this code, as long as
29 this GPL license comment, ASCII graphic included,
30 continues to appear in its entirety alongside the
31 GPL protected code.
32 END LICENSE
33 */
34 #include <cstdlib>
35 #include <iostream>
36 using namespace std;
37
38 #define MAX_ANUS_LEVEL 3
39
40 int main() {
41 srand(time(NULL));
42
43 for( unsigned int i = 0; i < 10; i++ ) {
44 unsigned int anus = rand()%300;
45 cout << "Do you own fucking homework,ANUS << endl;
46 }
47
48 return 0;
49 }