Write a program that reads two words and tells their lexicographic order.
Input consists of two words and , made up of only lowercase letters.
Print a line telling if , or , following the format of the examples exactly.
If you use a modern programming language, this exercise should be trivial.
Input
anna xavier
Output
anna < xavier
Input
xavier joan
Output
xavier > joan
Input
joan joan
Output
joan = joan