fork download
  1. from random import *
  2.  
  3. x1 = randint(1, 6)
  4. x2 = randint(1, 6)
  5. x3 = randint(1, 6)
  6.  
  7. avg = (x1 + x2 + x3) / 3
  8.  
  9. print(avg)
  10.  
Success #stdin #stdout 0.02s 9604KB
stdin
Standard input is empty
stdout
3