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

40 lines
324 B
Markdown
Raw Normal View History

2023-07-16 15:42:26 +08:00
# A+B Problem
2023-12-31 16:07:59 +08:00
## Tags
- Easy
2023-07-16 15:42:26 +08:00
## 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
```