oleg (oleg_ros)

Race #179

View Pit Stop page for race #179 by oleg_rosGhost race

View profile for oleg (oleg_ros)

Official speed 43.42 wpm (75.17 seconds elapsed during race)
Race Start June 17, 2025 8:38:02am UTC
Race Finish June 17, 2025 8:39:17am UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 28.22
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?")