VelizarAvramov

02. Add Two Numbers

Nov 3rd, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.33 KB | None | 0 0
  1. using System;
  2.  
  3. namespace _02._Add_Two_Numbers
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int a = int.Parse(Console.ReadLine());
  10.             int b = int.Parse(Console.ReadLine());
  11.  
  12.             int c = a + b;
  13.  
  14.             Console.WriteLine($"{a} + {b} = {c}");
  15.         }
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment