public static void Main()
double dProfessorSanatizer;
double dStudentSanatizer;
double dPotentialSavings;
Console.WriteLine("Hello, I am SupplyBot, please answer my questions, and I will calculate how many gloves, masks, and hand sanitizers you need to buy for your professors, staff, and students.\n");
Console.WriteLine("Please enter the number of students you are buying for as a whole number.\n");
dStudent = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("\nPlease enter a non-negative and non-zero number!\n");
Console.WriteLine("\nPlease enter the number of professors you are buying for as a whole number.\n");
dProfessors = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("\nPlease enter a non-negative and non-zero number!\n");
Console.WriteLine("\nPlease enter the number of staff you are buying for as a whole number.\n");
dStaff = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("\nPlease enter a non-negative and non-zero number!\n");
dProfessorMasks = Math.Ceiling(5.5*dProfessors);
dStaffMasks = Math.Ceiling(3.5*dStaff);
dStudentMasks = Math.Ceiling(4.5*dStudent);
dProfessorSanatizer = Math.Ceiling(1.2*dProfessors);
dStaffSanatizer = Math.Ceiling(0.8*dStaff);
dStudentSanatizer = Math.Ceiling(2.1*dStudent);
dProfessorGloves = Math.Ceiling(3.5*dProfessors);
dStaffGloves = Math.Ceiling(2.8*dStaff);
dStudentGloves = Math.Ceiling(2.5*dStudent);
iTotalGloves = Convert.ToInt32(dProfessorGloves + dStudentGloves + dStaffGloves);
iTotalSanatizer = Convert.ToInt32(dProfessorSanatizer + dStudentSanatizer + dStaffSanatizer);
iTotalMasks = Convert.ToInt32(dProfessorMasks + dStudentMasks + dStaffMasks);
dPotentialSavings = ((dProfessors*100) + (dStaff*80) + (dStudent*150))-((iTotalGloves*6.5)+(iTotalSanatizer*15.5)+(iTotalMasks*8.5))-250;
Console.WriteLine("\n========================================");
Console.WriteLine("\nBased your inputs your calculated purchase amounts are:");
Console.WriteLine("\n"+iTotalMasks +" masks");
Console.WriteLine("\n"+iTotalSanatizer+" bottles of hand sanatizer");
Console.WriteLine("\n"+iTotalGloves+" gloves\n");
Console.WriteLine("========================================");
Console.WriteLine("\nYour potential savings on this purchase is $"+ dPotentialSavings);