fork download
  1. a = {5: "QF", 7: "CG"}
  2.  
  3. first, second = ( # comment
  4. a.keys())
  5.  
  6. print(first)
  7. print(second)
  8.  
Success #stdin #stdout 0.02s 7100KB
stdin
Standard input is empty
stdout
5
7