I've tried the code below but it does not work properly. It basically asks user to enter 2 decimal numbers and adds them up. But there is a little problem with it. For example when I enter 1.3 as the first and 2.5 as the second number, the result is 38 instead of 3.8.
Console.Write("Enter a number: ");
double num3 = Convert.ToDouble(Console.ReadLine());
Console.Write("Enter another number: ");
double num4 = Convert.ToDouble(Console.ReadLine());
Console.WriteLine(num3 + num4);