using System;
public class Program
{
public static void Main()
int a = int.Parse(Console.ReadLine());
int b = int.Parse(Console.ReadLine());
Console.WriteLine(Math.Max(a, b));
}
//Write a program that reads two numbers from the console and prints the
//greater of them. Solve the problem without using conditional statements.