fork download
  1. # your code goes here
  2. def ile_pol(n):
  3. return n*n
  4. print(ile_pol(8))
  5. print(ile_pol(13))
  6. print(ile_pol(17))
  7. print(ile_pol(2))
  8. print(ile_pol(21))
  9. print(ile_pol(30))
Success #stdin #stdout 0.04s 9640KB
stdin
Standard input is empty
stdout
64
169
289
4
441
900