题目描述

Write a program that asks the user to enter two integers, obtains the numbers from the user, then prints the larger number followed by the words "is larger." If the numbers are equal, print the message "These numbers are equal."


输入格式

A line that contains two integers.


输出格式

Prints the larger number followed by the words "is larger." If the numbers are equal, print the message "These numbers are equal."


样例数据

输入

12 34

输出

34 is larger.

备注


操作

评测记录

优秀代码

信息

时间限制: 1s
内存限制: 128MB
评测模式: Normal

题解