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