Skip to content

Instantly share code, notes, and snippets.

@whatalnk
Created November 19, 2016 03:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save whatalnk/4ab16572a8705d2fa150b616d45b6ed7 to your computer and use it in GitHub Desktop.
Save whatalnk/4ab16572a8705d2fa150b616d45b6ed7 to your computer and use it in GitHub Desktop.
AtCoder ABC #034 A. テスト [C++]
#include <algorithm>
#include <iostream>
#include <string>
using namespace std;
int main() {
int x, y;
cin >> x >> y;
if (x < y){
cout << "Better" << endl;
} else {
cout << "Worse" << endl;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment