+-x

AtCoder
IDabc137_a
Time2000ms
Memory256MB
Difficulty
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$ [samples]
Samples
Input #1
\-13 3
Output #1
\-10

The largest number among $A + B = -10$, $A - B = -16$, and $A \times B = -39$ is $-10$.
Input #2
1 -33
Output #2
34

The largest number among $A + B = -32$, $A - B = 34$, and $A \times B = -33$ is $34$.
Input #3
13 3
Output #3
39

The largest number among $A + B = 16$, $A - B = 10$, and $A \times B = 39$ is $39$.
API Response (JSON)
{
  "problem": {
    "name": "+-x",
    "description": {
      "content": "We have two integers: $A$ and $B$. Print the largest number among $A + B$, $A - B$, and $A \\times B$.",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "abc137_a"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "We have two integers: $A$ and $B$.\nPrint the largest number among $A + B$, $A - B$, and $A \\times B$.\n\n## Constraints\n\n*   All values in input are integers.\n*   $-100 \\leq A,\\ B \\leq 100$\n\n## Input\n\nI...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments