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(8))
  8. print(ile_pol(7))
Success #stdin #stdout 0.03s 9628KB
stdin
Standard input is empty
stdout
64
169
289
64
49