fork download
  1. class Se:
  2. i = 1
  3.  
  4. @classmethod
  5. def Print(cls):
  6. print(cls.i)
  7.  
  8. Se.Print()
  9.  
Success #stdin #stdout 0.02s 28384KB
stdin
Standard input is empty
stdout
1