#!/usr/bin/python
from random import randint
var = randint(1, 1000)
if (var < 500):
print "Hax my anus!"
else:
print "Hax my anus!"
Name:
Anonymous2010-08-13 19:01
#On the name of ALLAH and may the blessing and peace of Allah
#be upon the Messenger of Allah Mohamed Salla Allahu Aliahi Wassalam.
#Author : Fouad Teniou
#Date : 13/08/10
#version : 1.1
#!/usr/bin/env python
#This is a portable way to declare the language being used. In
#our case, it is Python, a language created by Guido van Rossum,
#a non-Muslim born in 1956, who holds a masters degree in
#mathematics.
"""
allah_is_great uses random numbers Mersenne Twister to decide
whether to output "Allah is Great" or to output it.
"""
from random import randint
var = randint(1, 1000)
#generates a random integer between 1 and 1000 using the
#Mersenne Twister, named after Marin Mersenne, a non-Muslim
#(but French) mathematician born in 1588.
#As a laureate of an international Baccalaureate of mathematics
#I am very familiar with his work.
if (var < 500):
print "Allah is great"
#Prints "Allah is great"
else:
print "Allah is great"
#Prints "Allah is great"