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