git-kata-registration/pjasiun.py

6 lines
89 B
Python

from random import *
if random() < 0.8:
print "I'm in!"
else:
print "I'm out :("