102150: [AtCoder]ABC215 A - Your First Judge

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:2 Solved:0

Description

Score : $100$ points

Problem Statement

Given a string $S$, print AC if it perfectly matches Hello,World!; otherwise, print WA.

What is a perfect match?Strings $A$ is said to perfectly match $B$ when the length of $A$ is equal to that of $B$, and the $i$-th character of $A$ is the same as the $i$-th character of $B$ for every integer $i$ such that $1 \le i \le |A|$.

Constraints

  • $1 \le |S| \le 15$
  • $S$ consists of English lowercase letters, English uppercase letters, ,, and !.

Input

Input is given from Standard Input in the following format:

$S$

Output

Print the answer.


Sample Input 1

Hello,World!

Sample Output 1

AC

The string $S$ perfectly matches Hello,World!.


Sample Input 2

Hello,world!

Sample Output 2

WA

The seventh character from the beginning should be an uppercase W in Hello,World!, but $S$ has a lowercase w in that position. Thus, $S$ does not match Hello,World!.


Sample Input 3

Hello!World!

Sample Output 3

WA

Input

题意翻译

输入一个仅由英文大小写字母以及逗号和叹号(均为半角字符)组成的字符串 $s$ 。判断该字符串是否与 “Hello,World!” **完全一致**,若完全一致输出“AC”,否则输出“WA”。(所有上文中出现的字符串均不包含双引号)

Output

分数:100分

问题描述

给定一个字符串$S$,如果它完全匹配Hello,World!,则打印AC;否则,打印WA

什么是完全匹配?当字符串$A$的长度等于字符串$B$的长度,且对于任意整数$i$,当$1 \le i \le |A|$时,字符串$A$的第$i$个字符与字符串$B$的第$i$个字符相同时,称字符串$A$完全匹配字符串$B$。

约束条件

  • $1 \le |S| \le 15$
  • $S$由英文字母的大小写、逗号和感叹号组成。

输入

从标准输入以以下格式获取输入:

$S$

输出

打印答案。


样例输入1

Hello,World!

样例输出1

AC

字符串$S$完全匹配Hello,World!


样例输入2

Hello,world!

样例输出2

WA

Hello,World!中从开始算起的第七个字符应该是大写W,但是$S$在那个位置有一个小写w。因此,$S$不符合Hello,World!


样例输入3

Hello!World!

样例输出3

WA

加入题单

上一题 下一题 算法标签: