public static void Main()
Console.WriteLine("Enter the type of ink:");
string ink = Console.ReadLine();
Console.WriteLine("Enter the type of paper:");
string paper = Console.ReadLine();
Console.WriteLine("Enter the number of calendars:");
int calendars = int.Parse(Console.ReadLine());
Console.WriteLine("Enter the number of brochures:");
int brochures = int.Parse(Console.ReadLine());
int total = calendars + brochures;