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
188 B

9 months ago
9 months ago
9 months ago
9 months ago
  1. auteur = [0] * 6
  2. titre = [0] * 6
  3. for livre in range(6):
  4. auteur[livre] = input()
  5. titre[livre] = input()
  6. for livre in range(6):
  7. print(titre[livre])
  8. print(auteur[livre])