Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- list = int(input())
- list_per_hour = int(input())
- day = int(input())
- hours_per_day = list / list_per_hour / day
- print(int(hours_per_day))
- Или така:
- list = int(input())
- list_per_hour = int(input())
- day = int(input())
- hours_per_day = list // list_per_hour // day
- print(hours_per_day)
- Или тарикатската:)
- print(int(input()) // int(input()) // int(input()))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement