#B4282. Compare and Output the Larger Number
Compare and Output the Larger Number
Compare and Output the Larger Number
Given two positive integers N and M satisfying \(0 < N < 200\) and \(0 < M < 200\) with \(N \neq M\), compare them and output the larger one.
For example: If N = 145 and M = 100, then since 145 is greater than 100, the output should be 145.
inputFormat
The input consists of two positive integers, N and M, separated by space. It is guaranteed that \(0 < N < 200\), \(0 < M < 200\), and \(N \neq M\).
outputFormat
Output a single integer which is the larger of N and M.
sample
145 100
145