fork download
  1. # your code goes here
  2. c={}
  3. c[1]=1
  4. c['1']=2
  5. c[1]+=1
  6. sum=0
  7. for k in c:
  8. sum+=c[k]
  9. print sum
Success #stdin #stdout 0.01s 23336KB
stdin
Standard input is empty
stdout
4