

Time Limit: 2 sec / Memory Limit: 256 MB
配点 : 点
問題文
りんごさんは、とある祭りに参加しようとしています。
その祭りの名称が FESTIVAL
で終わる文字列 として入力に与えられるので、りんごさんが何の祭りに参加しようしているのかを出力して下さい。
ただし、 の祭りの名称は の末尾に FESTIVAL
を つだけ追加した文字列であるとします。
例えば CODEFESTIVAL
は CODE
の祭りです。
制約
- は大文字アルファベットのみからなる
- は
FESTIVAL
で終わる
入力
入力は以下の形式で標準入力から与えられる。
出力
りんごさんが何の祭りに参加しようしているのかを出力せよ。
入力例 1Copy
CODEFESTIVAL
出力例 1Copy
CODE
問題文中の例の通りです。
入力例 2Copy
CODEFESTIVALFESTIVAL
出力例 2Copy
CODEFESTIVAL
CODEFESTIVAL
の末尾に FESTIVAL
を追加した文字列であるので、これは CODEFESTIVAL
の祭りとなります。
入力例 3Copy
YAKINIKUFESTIVAL
出力例 3Copy
YAKINIKU
Score : points
Problem Statement
Rng is going to a festival.
The name of the festival is given to you as a string , which ends with FESTIVAL
, from input. Answer the question: "Rng is going to a festival of what?" Output the answer.
Here, assume that the name of "a festival of " is a string obtained by appending FESTIVAL
to the end of .
For example, CODEFESTIVAL
is a festival of CODE
.
Constraints
- consists of uppercase English letters.
- ends with
FESTIVAL
.
Input
Input is given from Standard Input in the following format:
Output
Print the answer to the question: "Rng is going to a festival of what?"
Sample Input 1Copy
CODEFESTIVAL
Sample Output 1Copy
CODE
This is the same as the example in the statement.
Sample Input 2Copy
CODEFESTIVALFESTIVAL
Sample Output 2Copy
CODEFESTIVAL
This string is obtained by appending FESTIVAL
to the end of CODEFESTIVAL
, so it is a festival of CODEFESTIVAL
.
Sample Input 3Copy
YAKINIKUFESTIVAL
Sample Output 3Copy
YAKINIKU