首页 > 试题广场 >

CodeForces 112A Petya and Stri

[编程题]CodeForces 112A Petya and Stri

Little Petya loves presents. His mum bought him two strings of the same size for his birthday. The strings consist of uppercase and lowercase Latin letters. Now Petya wants to compare those two strings lexicographically. The letters' case does not matter, that is an uppercase letter is considered equivalent to the corresponding lowercase letter. Help Petya perform the comparison.


输入描述:

Each of the first two lines contains a bought string. The strings' lengths range from 1 to 100 inclusive. It is guaranteed that the strings are of the same length and also consist of uppercase and lowercase Latin letters.



输出描述:

If the first string is less than the second one, print "-1". If the second string is less than the first one, print "1". If the strings are equal, print "0". Note that the letters' case is not taken into consideration when the strings are compared.

示例1

输入

aaaa<br />aaaA<br />abs<br />Abz<br />abcdefg<br />AbCdEfF<br />

输出

0<br />-1<br />1<br />

备注:

If you want more formal information about the lexicographical order (also known as the "dictionary order" or "alphabetical order"), you can visit the following site:

  • http://en.wikipedia.org/wiki/Lexicographical_order

这道题你会答吗?花几分钟告诉大家答案吧!