fork download
  1. print repr("abba")
  2. print repr(set([1, 2, 3, 4]))
  3. print eval(repr(set(range(4)))) == set([0, 1, 2, 3])
  4. # repr(Wielomian('3*x^2 + 2*x + 3')) == "Wielomian('3*x^2 + 2*x + 3')" na przyklad
  5.  
  6.  
Success #stdin #stdout 0.02s 4676KB
stdin
Standard input is empty
stdout
'abba'
set([1, 2, 3, 4])
True