using System;
public class Program
{
static void Main(string[] args)
{int a = 0 , c = 12;
int b = 10 , d = 5;
a = c % d;
b = b / a;
System.Console.WriteLine(a);
System.Console.WriteLine(b);
}