diff --git a/Compute (a*b)%c b/Compute (a*b)%c new file mode 100644 index 000000000..195585262 --- /dev/null +++ b/Compute (a*b)%c @@ -0,0 +1,7 @@ +class Solution{ +public: + long long mulMod(long long a, long long b, long long c){ + //complete the function here + return ( (a%c)*(b%c) )%c; + } +};