From cc69bf823fb74ae9da7105d95e80b05393e31f30 Mon Sep 17 00:00:00 2001 From: poketech456 <73296434+poketech456@users.noreply.github.com> Date: Thu, 22 Oct 2020 21:03:54 +0530 Subject: [PATCH] hacktoberfest-accepted hacktoberfest-accepted --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 36b4979..b4a0544 100644 --- a/README.md +++ b/README.md @@ -34,3 +34,12 @@ git push origin branch-name ``` * Create a new pull request from your forked repository (Click the `New Pull Request` button located at the top of your repo) + + +def getRemainder(num, divisor): + return (num - divisor * (num // divisor)) +num = 100 +divisor = 7 +print(getRemainder(num, divisor)) + +