{"problem":{"name":"Your First Judge","description":{"content":"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","description_type":"Markdown"},"platform":"AtCoder","limit":{"time_limit":2000,"memory_limit":262144},"difficulty":"None","is_remote":true,"is_sync":true,"sync_url":null,"sign":"abc215_a"},"statements":[{"statement_type":"Markdown","content":"Given a string $S$, print `AC` if it perfectly matches `Hello,World!`; otherwise, print `WA`.\nWhat 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|$.\n\n## Constraints\n\n*   $1 \\le |S| \\le 15$\n*   $S$ consists of English lowercase letters, English uppercase letters, `,`, and `!`.\n\n## Input\n\nInput is given from Standard Input in the following format:\n\n$S$\n\n[samples]","is_translate":false,"language":"English"}],"meta":{"iden":"abc215_a","tags":[],"sample_group":[["Hello,World!","AC\n\nThe string $S$ perfectly matches `Hello,World!`."],["Hello,world!","WA\n\nThe 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"]],"created_at":"2026-03-03 11:01:13"}}