Advertisement
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;
- using System.Threading.Tasks;
- namespace ConsoleApplication11
- {
- class Program
- {
- static void Main(string[] args)
- {
- Console.ForegroundColor = ConsoleColor.Cyan;
- for (int i = 0; i <35; i++)
- {
- Console.Write("Please enter your first number: ");
- int num1 = int.Parse(Console.ReadLine());
- Console.Write("Please enter your second number: ");
- int num2 = int.Parse(Console.ReadLine());
- if (num1 > num2)
- {
- Console.WriteLine(num1 - 1);
- Console.WriteLine(num2 + 1);
- }
- else
- {
- Console.WriteLine(num2 - 1);
- Console.WriteLine(num1 + 1);
- }
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement