Skip to content

Commit

Permalink
ABC358A Welcome to AtCoderLand
Browse files Browse the repository at this point in the history
  • Loading branch information
Vicfred committed Jun 17, 2024
1 parent 088047d commit 9dc9dec
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions atcoder/abc358a_welcome_to_atcoder_land.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// Vicfred
// https://atcoder.jp/contests/abc358/tasks/abc358_a
// implementation
#include <iostream>
#include <string>

using namespace std;

int main() {
string S, T;
cin >> S >> T;
if(S == "AtCoder" and T == "Land") {
cout << "Yes" << endl;
} else {
cout << "No" << endl;
}
return 0;
}

0 comments on commit 9dc9dec

Please sign in to comment.