Score : $100$ points
Given a string $S$, print AC if it perfectly matches Hello,World!; otherwise, print WA.
,, and !.Input is given from Standard Input in the following format:
$S$
Print the answer.
Hello,World!
AC
The string $S$ perfectly matches Hello,World!.
Hello,world!
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!.
Hello!World!
WA