Advertisement
Serby__

2

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