My issue
I can’t edit the code
Learning course: Practice C#
Problem Link: Rearrange Code Practice Problem in C#
I can’t edit the code
Learning course: Practice C#
Problem Link: Rearrange Code Practice Problem in C#
@warm_petal_43
u have to drag it to rearrange it into valid code
like this
using System;
namespace MyApplication
{
class Program
{
static void Main(string[] args)
{
int A = Convert.ToInt32(Console.ReadLine());
int B = Convert.ToInt32(Console.ReadLine());
int C = A + B;
Console.WriteLine(C);
}
}
}