Advertisement
mihael03

Greater_Number

Sep 27th, 2020
495
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.44 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Greater_Number
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int num1 = int.Parse(Console.ReadLine());
  10.             int num2 = int.Parse(Console.ReadLine());
  11.             if(num1 > num2)
  12.             {
  13.                 Console.WriteLine(num1);
  14.             }
  15.             else
  16.             {
  17.                 Console.WriteLine(num2);
  18.             }
  19.         }
  20.     }
  21. }
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement