{
  "schemaVersion": 1,
  "id": "c-new-001",
  "title": "새 문제 제목",
  "difficulty": "입문",
  "tags": [
    "입출력",
    "연산자"
  ],
  "description": "두 정수 A와 B를 입력받아 두 수의 합을 출력하세요.",
  "input": "한 줄에 정수 A와 B가 공백으로 구분되어 주어집니다.",
  "output": "A + B의 값을 출력합니다.",
  "constraints": [
    "-10,000 ≤ A, B ≤ 10,000"
  ],
  "examples": [
    {
      "input": "3 5\n",
      "output": "8\n"
    }
  ],
  "starterCode": "#include <stdio.h>\n\nint main() {\n    // 여기에 코드를 작성하세요.\n    \n    return 0;\n}\n",
  "timeLimitMs": 2000,
  "comparison": "tokens",
  "tests": [
    {
      "input": "3 5\n",
      "output": "8\n",
      "points": 20
    },
    {
      "input": "0 0\n",
      "output": "0\n",
      "points": 20
    },
    {
      "input": "-10 3\n",
      "output": "-7\n",
      "points": 20
    },
    {
      "input": "10000 10000\n",
      "output": "20000\n",
      "points": 20
    },
    {
      "input": "-10000 -10000\n",
      "output": "-20000\n",
      "points": 20
    }
  ],
  "source": {
    "document": "원본.pdf",
    "pages": "1-2",
    "note": "설명과 테스트를 문제에 맞게 수정하세요."
  }
}