# 回复让步

## A. 【例15.2】 偶数

<h2>说明</h2>

读入一个正整数$a$，如果$a$为偶数输出<code>yes</code>。
<h2>输入格式</h2>

一个正整数$a$。

<h2>输出格式</h2>

偶数输出<code>yes</code>，否则什么也不输出。

<h2>样例</h2>
<pre><code class="language-input1">12</code></pre><pre><code class="language-output1">yes</code></pre>


---

## B. 练9.2 打印ASCII码

<h2>说明</h2>

输入一个除空格以外的可见字符，输出其ASCII码。
<h2>输入格式</h2>

一个除空格以外的可见字符。

<h2>输出格式</h2>

一个十进制整数，即该字符的ASCII码。

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


---

## C. 恰好有一门课不及格的土拨鼠

# Background

土拨鼠乐乐正在参加编程学习.

# Description

她总共学习了"顺序结构","条件结构","循环结构"三门课程, 现在她想知道, 如果恰好有一门课不及格的话, 她就可以接口学编程偷偷玩游戏了.

# Format

## Input

输入三个整数, 表示三门课的成绩(成绩范围在0-100之间)

## Output

如果恰好有一门课不及格(60分为及格), 则输出"gogogo", 否则输出"sad"

# Samples

```input1
60 30 90
```

```output1
gogogo
```

```input2
70 80 90
```

```output2
sad
```

# Limitation

1s, 1024KiB for each test case.



---

## D. 输出绝对值

### 【题目描述】

 输入一个浮点数，输出这个浮点数的绝对值，保留到小数点后两位。

### 【输入】

输入一个浮点数，其绝对值不超过10000。

### 【输出】

输出这个浮点数的绝对值，保留到小数点后两位。

### 【输入样例】

```
-3.14
```

### 【输出样例】

```
3.14
```

### 【来源】

一本通在线评测



---

## E. 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.



---

## F. 练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>


---
