View Pit Stop page for race #1 by codeforces — Ghost race
View profile for quirino (codeforces)
Official speed | 64.77 wpm (50.39 seconds elapsed during race) |
---|---|
Race Start | May 26, 2022 3:46:03am UTC |
Race Finish | May 26, 2022 3:46:53am UTC |
Outcome | No win (2 of 2) |
Opponents |
1. leoh8r (83.28 wpm) |
Accuracy | 95.0% |
Points | 42.10 |
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?") |