#!/bin/python rpm = int(input("RPM? ")) headseek = int(input("AVG head seek? (ms) ")) # ms rotlat = 60/rpm/2 * 1000 # ms print(headseek+rotlat)