A - ABCxxx Editorial /

Time Limit: 2 sec / Memory Limit: 256 MB

配点 : 100

問題文

このコンテスト、つまり AtCoder Beginner Contest の略称は、アルファベット 3 文字で ABC となっております。

そして、ABC のうち特定の回を指すときは、何回目の ABC かを 3 桁の数字で表して後ろに付け、ABC680 のように呼びます。例えば ABC680 は、680 回目の ABC のことを指します。

では、N 回目の ABC はどのように表すでしょうか、これを出力するプログラムを作成してください。

制約

  • 100 ≦ N ≦ 999

入力

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

N

出力

N 回目の ABC の略称を出力する。


入力例 1

100

出力例 1

ABC100

100 回目の ABC は ABC100 です。


入力例 2

425

出力例 2

ABC425

入力例 3

999

出力例 3

ABC999

Score : 100 points

Problem Statement

This contest, AtCoder Beginner Contest, is abbreviated as ABC.

When we refer to a specific round of ABC, a three-digit number is appended after ABC. For example, ABC680 is the 680th round of ABC.

What is the abbreviation for the N-th round of ABC? Write a program to output the answer.

Constraints

  • 100 ≤ N ≤ 999

Input

Input is given from Standard Input in the following format:

N

Output

Print the abbreviation for the N-th round of ABC.


Sample Input 1

100

Sample Output 1

ABC100

The 100th round of ABC is ABC100.


Sample Input 2

425

Sample Output 2

ABC425

Sample Input 3

999

Sample Output 3

ABC999