1 #!/usr/bin/env python 2 3 from random import seed, randint 4 5 seed() 6 7 result_1 = randint(1, 1) 8 9 # vim: tabstop=4 expandtab shiftwidth=4