[Python] ABC002 A

A – 正直者

x, y = map(int, input().split())

if (x >= y):
    print(x)
else:
    print(y)

メモ

  • map関数を使うことでも、1行の標準入力を複数の変数に代入できる。