def h(m,n): ans = 0 while (m >= n): (ans,m) = (ans+1,m-n) return(ans)
OR
Your email address will not be published. Required fields are marked *
Comment *
Name *
Email *
Website
Save my name, email, and website in this browser for the next time I comment.