public static void Main()
Console.Write("Total: ");
var total = Console.ReadLine();
Console.Write("Porcentaje: ");
var porcentaje = Console.ReadLine();
totalint = Convert.ToInt16(total);
porcentajeint = Convert.ToInt16(porcentaje);
string devuelve = devuelveporciento(totalint, porcentajeint);
Console.Write("Tanto Porciento: " + devuelve);
public static string devuelveporciento(int total, int porcentaje)
regresar = (Convert.ToDecimal(total) * Convert.ToDecimal(porcentaje)) / 100;
return regresar.ToString();