#abc076c. [abc076_c]Dubious Document 2
[abc076_c]Dubious Document 2
Problem Statement
E869120 found a chest which is likely to contain treasure.
However, the chest is locked. In order to open it, he needs to enter a string consisting of lowercase English letters.
He also found a string , which turns out to be the string with some of its letters (possibly all or none) replaced with ?
.
One more thing he found is a sheet of paper with the following facts written on it:
- Condition 1: The string contains a string as a contiguous substring.
- Condition 2: is the lexicographically smallest string among the ones that satisfy Condition 1.
Print the string .
If such a string does not exist, print UNRESTORABLE
.
Constraints
- consists of lowercase English letters and
?
. - consists of lowercase English letters.
Input
Input is given from Standard Input in the following format:
Output
Print the string .
If such a string does not exist, print UNRESTORABLE
instead.
Sample Input 1
?tc????
coder
Sample Output 1
atcoder
There are strings that satisfy Condition 1: atcoder
, btcoder
, ctcoder
,..., ztcoder
. Among them, the lexicographically smallest is atcoder
, so we can say atcoder
.
Sample Input 2
??p??d??
abc
Sample Output 2
UNRESTORABLE
There is no string that satisfies Condition 1, so the string does not exist.