#D5513. English Sentence

    ID: 4580 Type: Default 1000ms 134MiB

English Sentence

English Sentence

Your task is to write a program which reads a text and prints two words. The first one is the word which is arise most frequently in the text. The second one is the word which has the maximum number of letters.

The text includes only alphabetical characters and spaces. A word is a sequence of letters which is separated by the spaces.

Input

A text is given in a line. You can assume the following conditions:

  • The number of letters in the text is less than or equal to 1000.
  • The number of letters in a word is less than or equal to 32.
  • There is only one word which is arise most frequently in given text.
  • There is only one word which has the maximum number of letters in given text.

Output

The two words separated by a space.

Example

Input

Thank you for your mail and your lectures

Output

your lectures

inputFormat

Input

A text is given in a line. You can assume the following conditions:

  • The number of letters in the text is less than or equal to 1000.
  • The number of letters in a word is less than or equal to 32.
  • There is only one word which is arise most frequently in given text.
  • There is only one word which has the maximum number of letters in given text.

outputFormat

Output

The two words separated by a space.

Example

Input

Thank you for your mail and your lectures

Output

your lectures

样例

Thank you for your mail and your lectures
your lectures