Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace GreaterNumber
- {
- class Program
- {
- static void Main()
- {
- int num1 = int.Parse(Console.ReadLine());
- int num2 = int.Parse(Console.ReadLine());
- if (num1 > num2)
- {
- Console.WriteLine(num1);
- }
- else
- {
- Console.WriteLine(num2);
- }
- }
- }
- }
Add Comment
Please, Sign In to add comment