A - 正直者

cpatcoderjust dodiff experimentaldiff gray

最終更新日

問題

https://atcoder.jp/contests/abc002/tasks/abc002_1 (新しいタブで開く)

問題文

max(X,Y)\max(X, Y) は?

制約

サンプル

I/O 1

10 11
11

I/O 2

100000000 10000000
100000000

考察

やるだけ。

コード

https://atcoder.jp/contests/abc002/submissions/26233691 (新しいタブで開く)

int main() {
  int x, y;
  cin >> x >> y;
  cout << max(x, y) << endl;
  return 0;
}