시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 512 MB26717816672.489%

문제

We say that a string is odd if and only if all palindromic substrings of the string have odd length.

Given a string s, determine if it is odd or not.

A substring of a string s is a nonempty sequence of consecutive characters from s. A palindromic substring is a substring that reads the same forwards and backwards.

입력

The input consists of a single line containing the string s (1 ≤ |s| ≤ 100).

It is guaranteed that s consists of lowercase ASCII letters (‘a’–‘z’) only

출력

If s is odd, then print “Odd.” on a single line (without quotation marks). Otherwise, print “Or not.” on a single line (without quotation marks).

예제 입력 1

amanaplanacanalpanama

예제 출력 1

Odd.

예제 입력 2

madamimadam

예제 출력 2

Odd.

예제 입력 3

annamyfriend

예제 출력 3

Or not.

예제 입력 4

nopalindromes

예제 출력 4

Odd.