Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 100 点
問題文
整数 A, B があります。
A + B, \ A - B, \ A \times B の中で最大の数を出力してください。
制約
- 入力は全て整数である。
- -100 \leq A,\ B \leq 100
入力
入力は以下の形式で標準入力から与えられる。
A B
出力
A + B, \ A - B, \ A \times B の中で最大の数を出力せよ。
入力例 1
-13 3
出力例 1
-10
A + B = -10, \ A - B = -16, \ A \times B = -39 の中で最大の数は -10 です。
入力例 2
1 -33
出力例 2
34
A + B = -32, \ A - B = 34, \ A \times B = -33 の中で最大の数は 34 です。
入力例 3
13 3
出力例 3
39
A + B = 16, \ A - B = 10, \ A \times B = 39 の中で最大の数は 39 です。
Score : 100 points
Problem Statement
We have two integers: A and B.
Print the largest number among A + B, A - B, and A \times B.
Constraints
- All values in input are integers.
- -100 \leq A,\ B \leq 100
Input
Input is given from Standard Input in the following format:
A B
Output
Print the largest number among A + B, A - B, and A \times B.
Sample Input 1
-13 3
Sample Output 1
-10
The largest number among A + B = -10, A - B = -16, and A \times B = -39 is -10.
Sample Input 2
1 -33
Sample Output 2
34
The largest number among A + B = -32, A - B = 34, and A \times B = -33 is 34.
Sample Input 3
13 3
Sample Output 3
39
The largest number among A + B = 16, A - B = 10, and A \times B = 39 is 39.