Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace z2
- {
- class Program
- {
- static void Main(string[] args)
- {
- Console.Write("a = ");
- int a = int.Parse(Console.ReadLine());
- Console.Write("b = ");
- int b = int.Parse(Console.ReadLine());
- //int res = a + b;
- Console.Write(a + " + " + b + " = " + b + " + " + a);
- Console.ReadKey();
- }
- }
- }
Add Comment
Please, Sign In to add comment