using System;
public class Program
{
public static void Main()
int a = 21;
int b = 10;
int c;
c = a%b;
Console.WriteLine("Line 1 - Value of c is {0}", c);
}