よじろめ覚書

私の理解度重視のソースコードです。

ABC034A - テスト

問題:A - テスト

#include <iostream>
using namespace std;

int main(void) {
    int x, y;
    
    cin.tie(0);
    ios::sync_with_stdio(false);
    cin >> x >> y;
    cout << (x < y? "Better" : "Worse") << "\n";
    return 0;
}

scanfの戻り値とかの考慮が嫌なので、これからはcin, cout を使用します。