1685: CF797 - C. Minimal string
[Creator : ]
Description
time limit per test
1 secondmemory limit per test
256 megabytesinput
standard inputoutput
standard outputPetya recieved a gift of a string s with length up to 105 characters for his birthday. He took two more empty strings t and u and decided to play a game. This game has two possible moves:
You should write a program that will help Petya win the game.
- Extract the first character of s and append t with this character.
- Extract the last character of t and append u with this character.
You should write a program that will help Petya win the game.
Input
First line contains non-empty string s (1≤|s|≤105), consisting of lowercase English letters.Output
Print resulting string u.Examples
Input
cab
Output
abc
Input
acdb
Output
abdc