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."
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.