Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. a = int(input())
  2. b = int(input())
  3. c = int(input())
  4. d = int(input())
  5. k = int(input())
  6. if a % c == 0:
  7. x = a // c
  8. else:
  9. x = a // c + 1
  10. if b % d == 0:
  11. y = b // d
  12. else:
  13. y = b // d + 1
  14. if x + y > k:
  15. print(-1)
  16. else:
  17. print(x)
  18. print(y)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement