ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1820. Ural Steaks

please help python
Posted by Pundit 25 Oct 2022 06:42
n = int(input())
k=int(input())
n=n*2
if n % k ==0:
  print(n/k)
else:
    a=int(n/k)+1
    print(a)

I can't find my mistake.
It keep telling me "Runtime error"
Re: please help python
Posted by ixiolirion 30 Oct 2022 08:58
the "only" input line contains...