Complete these tasks to reinforce what you learned in this module.
Divide 17 by 5 using integer arithmetic and print exactly 17 / 5 = 3 remainder 2. Compute both numbers, do not hardcode them in the text.
/ gives the quotient and % gives the remainder.using System;
class Program
{
static void Main()
{
// Compute the quotient and remainder, then print
}
}