fork download
  1. import random
  2. #a=int(raw_input())
  3. a=random.randint(0,2)
  4. b=random.randint(0,2)
  5. c=(a-b+3)%3
  6. l=["aiko","kati","make"]
  7.  
  8. if c==0:print l[0]
  9. elif c==2:print l[1]
  10. else:print l[2]
  11.  
  12. print a,b#確認
Success #stdin #stdout 0s 33864KB
stdin
Standard input is empty
stdout
aiko
0 0