Advertisement
Spocoman

Gramophone

Feb 24th, 2022
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. import math
  2.  
  3. band = input()
  4. album = input()
  5. song = input()
  6.  
  7. rotation = len(band) * len(album) * len(song) / 2 / 2.5
  8.  
  9. print(f"The plate was rotated {math.ceil(rotation)} times.")
  10.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement