411 - Relation
Relation
Time Limit: 1 sec
The Problem
Make a simple program that reads two integer numbers M and N and find the relation between two numbers.
Example:
For 10 12, print 10 < 12
For 12 10, print 12 > 10
For 10 10, print 10 = 10
The Input
Input file contain a series of line, each line contain two integer numbers M and N (0<=M, N<=10000). Input is terminated by EOF.
The Output
For each line of input, print "M < N" if M is less than N, print "M > N" if M is greater than N, and print "M = N" if M is equal to N in a separate line.
Sample Input
14 10
10 22
25 25
Sample Output
14 > 10
10 < 22
25 = 25
Problem Setter: Shahin ShamS