public static void Main()
Console.WriteLine("Percentage Calculator\n");
Console.Write("Input Amount: ");
int amo = int.Parse(Console.ReadLine());
Console.Write("Input Percentage: ");
int per = int.Parse(Console.ReadLine());
double equ = (double)per/100;
Console.WriteLine("\nThe {0}% of ₱{1:N} is = ₱{2}", per,amo,per1);
Console.WriteLine("\nThe equivalent of ₱{0:N} with {1}% increase is ₱{2:N}", amo,per,tot1);