# 001标题比赛

## A. 小白必做

小白必做 ^_^

没有输入和输出~

记得定义主函数



---

## B. x+y

# Background
Special for beginners, ^_^

# Description
Given two integers x and y, print the sum.

# Format

## Input
Two integers x and y, satisfying $0\leq x,y\leq 32767$ .

## Output
One integer, the sum of x and y.

# Samples

```input1
123 500
```

```output1
623
```

# Limitation
1s, 1024KiB for each test case.

---

## C. 简单题

# Background

1+1

# Description

输出1+1的和

# Format

## Input

无

## Output

1+1的和

# Samples

```input1
无
```

```output1
2
```

# Limitation

无




---

## D. 练8.1 尼克与强盗

<h2>说明</h2>

有一天一个强盗来到尼克家门口，记下了他家的门牌号——$62$号，准备晚上再动手。刚好尼克看到了就把门牌号上的十位数字与个位数字调换一下，变成了$26$号躲过了一劫。试编一程序，输入一个两位数，交换十位与个位并输出。
<h2>输入格式</h2>

一个数字门牌号。

<h2>输出格式</h2>

变换后的门牌号。

<h2>样例</h2>
<pre><code class="language-input1">67</code></pre><pre><code class="language-output1">76
</code></pre>


---
