A+B Problem
Problem Calculate the result of a + b Input: a and b Output: result of addition of a and b i.e. a+b Solution using System; namespace ProblemSolving { class Program { static void Main(string[] args) { Console.WriteLine(“Enter Your Inpur”); string[] input = Console.ReadLine().Split(‘ ‘); Console.WriteLine(“The result is: ” + (int.Parse(input[0]) + int.Parse(input[1]))); Console.ReadKey(); } }… Read More »