My issue
what is the error
My code
using System;
public class Test
{
public static void Main()
{
int a = Convert.ToInt32(Console.ReadLine());
int b = Convert.ToInt32(Console.ReadLine());
int c = a * b;
Console.WriteLine(c);
}
}
Learning course: Practice C#
Problem Link: CodeChef: Practical coding for everyone