My issue
t=int(input())
for i in range(t):
x,h=map(int,input().split())
c=0
for j in range(5):
h=h-x/2
c=+1
if h<0:
print(int(c))
break
if h>0:
c=5+h//x
if h/x>h//x:
c+=1
print(int(c))
My code
# cook your dish here
t=int(input())
for i in range(t):
x,h=map(int,input().split())
c=0
for j in range(5):
h=h-x/2
c=+1
if h<0:
print(int(c))
break
if h>0:
c=5+h//x
if h/x>h//x:
c+=1
print(int(c))
Problem Link: Slow Start Practice Coding Problem - CodeChef