Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace ConsoleInputOutput
- {
- public static class PrintBigger
- {
- public static void Main()
- {
- double firstNumber = double.Parse(Console.ReadLine());
- double secondNumber = double.Parse(Console.ReadLine());
- double desiredNumber = Math.Max(firstNumber, secondNumber);
- Console.WriteLine(desiredNumber);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement