# v

## A. a+b

# Background

a+b

# 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
1 2
```

```output1
3
```

# Limitation

1s, 1024KiB for each test case.



---

## B. 练11.2 间隔输出

<h2>说明</h2>

写一函数，输入一个四位数字，要求输出这四个数字字符，但每两个数字间有一个空格。如输入 $1990$，应输出 <code>1 9 9 0</code>。
<h2>输入格式</h2>

一个四位数。

<h2>输出格式</h2>

增加空格输出。

<h2>样例</h2>
<pre><code class="language-input1">1990</code></pre><pre><code class="language-output1">1 9 9 0
</code></pre>


---

## C. 小白必做

# 题目描述

没有输出和输入
小白必做！！！！！！！！
# Samples

```input1

```

```output1

```




---

## D. 练6.1 植树造林

<h2>说明</h2>

某小学向全校师生发出“植树造林，还我绿色”的倡议，鼓励大家多植树。给出每个班的人数与平均每个人种的棵数，输出这个班总共种了几棵树。
<h2>输入格式</h2>

两个正整数，分别是人数与平均每人种的棵数。

<h2>输出格式</h2>

总共种了几棵树。

<h2>样例</h2>
<pre><code class="language-input1">50 4</code></pre><pre><code class="language-output1">总的棵数：200</code></pre>


---

## E. 【例9.2】打印字符

<h2>说明</h2>

我们知道每个字符都有一个对应的 ASCII 码。现在输入一个 ASCII 码，要求你输出对应的字符。
<h2>输入格式</h2>

一个整数，即字符的 ASCII 码，保证对应的字符为可见字符。

<h2>输出格式</h2>

一行，包含相应的字符。

<h2>样例</h2>
<pre><code class="language-input1">65</code></pre><pre><code class="language-output1">A
</code></pre>


---

## F. 练10.1 细胞分裂

<h2>说明</h2>

细胞学说认为生物是细胞构成的，细胞是生命的结构单位，细胞只能由细胞分裂而来。$1$个细胞，第$1$次分裂成$2$个，第$2$次分裂成$4$个……试编一程序，算一算第$5$次分裂成几个？
<h2>输入格式</h2>

无

<h2>输出格式</h2>

输出第五次分裂的个数。

<h2>样例</h2>
<pre><code class="language-input1">无</code></pre><pre><code class="language-output1">32
</code></pre>


---
