using System;
public class Program
{
public static void Main()
int eggs = 56;
int packamount = 12;
int eggsleftover = eggs % packamount ; //this line divides the amount of eggs by packamount and then gives the remainder
Console.WriteLine(eggsleftover);
}