The answer would be 2&5 because this is correct
no longer returns an error but your math seems to have something wrong with it, always returns 0
Console.WriteLine("Enter a percentage here");
int Percent = int.Parse(Console.ReadLine());
Console.WriteLine("Enter your number here");
int Number = int.Parse(Console.ReadLine());
int result = Percent / 100 * Number;
Answer:
A MIPS Assembly procedure return to the caller by having the caller pass an output pointer (to an already-allocated array).