fork download
  1. def xyz(n):
  2. assert(n>0),"Negative number"
  3. print(n*n)
  4. print(xyz(-10))
Success #stdin #stdout 0.04s 9512KB
stdin
Standard input is empty
stdout
100
None