woj-server/resource/runner/problem/example/description.md

36 lines
307 B
Markdown
Raw Normal View History

2023-07-16 15:42:26 +08:00
# A+B Problem
## Description
Given two integers `a` and `b`, calculate the sum of them.
## Scope
- $|a|,|b| \le {10}^9$
## I/O Format
### Input Format
Two integers separated by spaces.
### Output Format
One integer.
## Example Cases
### Case 1
#### Input
```
20 30
```
#### Output
```
50
```