fork download
  1. v= map(chr, range(65, 91))
  2.  
  3. i=0
  4. j=0
  5. while i < 8:
  6. x,y= raw_input().split(" ")
  7. if x<y:
  8. c[i]=v[j+1]
  9. j+=2
  10. else:
  11. c[i]=v[j]
  12. j+=2
  13. i+=1
  14.  
  15. for i in c
  16. print c[i]
  17.  
Runtime error #stdin #stdout 0.03s 6352KB
stdin
4 1
1 0
0 4
3 1
2 3
1 2
2 0
0 2
1 2
4 3
0 1
3 2
3 4
1 4
1 0
stdout
Standard output is empty