from math import floor T,S,D=map(int,input().split()) t = D/S ans = floor(t/24)*12 t-=ans*24 T-=6 T%=24 te = T+t if te>12: if T<12: t-=12-T else: ans-=T-12 te-=12 ans+=min(12,te) print(ans)