You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
159 B

5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
  1. nbPierres = int(input())
  2. pierre = 0
  3. etage = 1
  4. while pierre + etage ** 2 <= nbPierres:
  5. pierre = pierre + etage ** 2
  6. etage +=1
  7. print(etage - 1)
  8. print(pierre)