<?php

function getRemainder($a, $b) {
return $a % $b;
}
echo getRemainder(50, 7);