You are viewing a single comment's thread. Return to all comments →
# Library Fine 🧾 def library_fine(d1, m1, y1, d2, m2, y2): return (10000 if y1 > y2 else (m1 - m2) * 500 if y1 == y2 and m1 > m2 else (d1 - d2) * 15 if y1 == y2 and m1 == m2 and d1 > d2 else 0)
Seems like cookies are disabled on this browser, please enable them to open this website
Library Fine
You are viewing a single comment's thread. Return to all comments →