ABC
A - Welcome to AtCoder Land

A - Welcome to AtCoder Land

解説

問題 (opens in a new tab)

ただ 2 文字 s,ts,t が与えられるので, それぞれを比較して "AtCoder" と "Land" に一致するかどうかを判定するだけ。

提出コード

  • Go
func main() {
	var s, t string
	scanStringVariables(&s, &t)
	if s == "AtCoder" && t == "Land" {
		writeLine("Yes")
	} else {
		writeLine("No")
	}
}
  • C++
int main() {
    string s, t; cin >> s >> t;
    if (s == "AtCoder" && t == "Land") cout << "Yes" << endl;
    else cout << "No" << endl;
}