Leo (leoh8r)

Race #1

View Pit Stop page for race #1 by leoh8rGhost race

View profile for Leo (leoh8r)

Official speed 83.28 wpm (39.19 seconds elapsed during race)
Race Start May 26, 2022 3:46:03am UTC
Race Finish May 26, 2022 3:46:42am UTC
Outcome Win (1 of 2)
Opponents 2. codeforces (64.77 wpm)
Accuracy 97.0%
Points 54.14
Text #10017 (Length: 272 characters)

import random min = 1 max = 6 roll_again = "yes" while roll_again == "yes" or roll_again == "y": print "Rolling the dices..." print "The values are...." print random.randint(min, max) print random.randint(min, max) roll_again = raw_input("Roll the dices again?")