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 DodatniaUjemna
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- int a,b;
- Console.Write("Podaj a: ");
- a = int.Parse(Console.ReadLine());
- Console.Write("Podaj b: ");
- b = int.Parse(Console.ReadLine());
- if (a == b)
- {
- Console.WriteLine($"{a} = {b}");
- }
- else
- {
- if (a > b)
- Console.WriteLine($"{a} > {b}");
- else
- Console.WriteLine($"{a} < {b}");
- }
- Console.ReadKey();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement