A - XXFESTIVAL Editorial /

Time Limit: 2 sec / Memory Limit: 256 MB

配点 : 100100

問題文

りんごさんは、とある祭りに参加しようとしています。

その祭りの名称が FESTIVAL で終わる文字列 SS として入力に与えられるので、りんごさんが何の祭りに参加しようしているのかを出力して下さい。

ただし、ss の祭りの名称は ss の末尾に FESTIVAL11 つだけ追加した文字列であるとします。 例えば CODEFESTIVALCODE の祭りです。

制約

  • 9S509 \leq |S| \leq 50
  • SS は大文字アルファベットのみからなる
  • SSFESTIVAL で終わる

入力

入力は以下の形式で標準入力から与えられる。

SS

出力

りんごさんが何の祭りに参加しようしているのかを出力せよ。


入力例 1Copy

Copy
CODEFESTIVAL

出力例 1Copy

Copy
CODE

問題文中の例の通りです。


入力例 2Copy

Copy
CODEFESTIVALFESTIVAL

出力例 2Copy

Copy
CODEFESTIVAL

CODEFESTIVAL の末尾に FESTIVAL を追加した文字列であるので、これは CODEFESTIVAL の祭りとなります。


入力例 3Copy

Copy
YAKINIKUFESTIVAL

出力例 3Copy

Copy
YAKINIKU

Score : 100100 points

Problem Statement

Rng is going to a festival.

The name of the festival is given to you as a string SS, 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 ss" is a string obtained by appending FESTIVAL to the end of ss. For example, CODEFESTIVAL is a festival of CODE.

Constraints

  • 9S509 \leq |S| \leq 50
  • SS consists of uppercase English letters.
  • SS ends with FESTIVAL.

Input

Input is given from Standard Input in the following format:

SS

Output

Print the answer to the question: "Rng is going to a festival of what?"


Sample Input 1Copy

Copy
CODEFESTIVAL

Sample Output 1Copy

Copy
CODE

This is the same as the example in the statement.


Sample Input 2Copy

Copy
CODEFESTIVALFESTIVAL

Sample Output 2Copy

Copy
CODEFESTIVAL

This string is obtained by appending FESTIVAL to the end of CODEFESTIVAL, so it is a festival of CODEFESTIVAL.


Sample Input 3Copy

Copy
YAKINIKUFESTIVAL

Sample Output 3Copy

Copy
YAKINIKU


2025-04-04 (Fri)
19:12:00 +00:00