以下の内容はhttps://blog.hamayanhamayan.com/entry/2020/01/25/120526より取得しました。


AC or WA [AtCoder Beginner Contest 152 A]

https://atcoder.jp/contests/abc152/tasks/abc152_a

解説

https://atcoder.jp/contests/abc152/submissions/9706297

ACしている時は全問通っているときなので、N=MであればYes
そうでないならNoとなる

int N, M;
//---------------------------------------------------------------------------------------------------
void _main() {
    cin >> N >> M;

    if (N == M) cout << "Yes" << endl;
    else cout << "No" << endl;
}



以上の内容はhttps://blog.hamayanhamayan.com/entry/2020/01/25/120526より取得しました。
このページはhttp://font.textar.tv/のウェブフォントを使用してます

不具合報告/要望等はこちらへお願いします。
モバイルやる夫Viewer Ver0.14