Write a program, which reads a food product name, volume, energy content per 100ml and sugar content per 100ml. Calculate the energy and sugar content for the given volume and print them on the console in the following format: • Name – as per the input • Volume – integer, suffixed by “ml” (e.g. “220ml”) • Energy content – integer, suffixed by “kcal” (e.g. “500kcal”) • Sugar content – integer, suffixed by “g” (e.g. “30g”) using System; namespace _04._Beverage_Labels { class BeverageLabels { static void Main(string[] args) { string product = Console.ReadLine(); int volumeml = int.Parse(Console.ReadLine()); int kcal = int.Parse(Console.ReadLine()); int grams = int.Parse(Console.ReadLine()); double kcalResult = (kcal * volumeml) / 100.0; double sugarContent = (grams * volumeml) / 100.0; Console.WriteLine("{0}ml {1}:",volumeml,product); Console.WriteLine($"{kcalResult}kcal, {sugarContent}g sugars"); } } }