# 易做题1

## A. 小白必做

小白必做 ^_^

没有输入和输出~

记得定义主函数



---

## B. 在线编程模式专用

# 在线编程模式专用

## 想AC输出"0"(不带引号)



---

## C. “温柔”的张老师

https://www.360kuai.com/pc/9e7a24b182ffe6090?cota=3&kuai_so=1&sign=360_57c3bbd1&refer_scene=so_1

这个网址中第一张图片中的白衣老师就是我们排球张雅琪老师

## 张老师最漂亮！不接受质疑！！！

## 张老师最温柔！质疑？也不是不能接受嘛

## 题目简介

灰常简单，只要输出“张老师最漂亮！不接受质疑！！！”和“张老师最温柔！质疑？也不是不能接受嘛”就行了。注意：不输出引号！！！

这道题做对的人，好运连连，每次月考级部第一，CSP顺利上岸，心想事成，重构代码一遍AC，诸事皆宜！！！

## 题目输入

```
无
```

## 题目输出

```
张老师最漂亮！不接受质疑！！！

张老师最温柔！质疑？也不是不能接受嘛
```




---

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

---

## E. a*b问题的哥哥

# 题目描述

有两个数a,b(1<=a,b<=1000)，求出a*b+1。

# 输入输出格式

## 输入

一行输入：a和b，用空格分隔。

## 输出

一行，a*b+1。

# 样例

```input1
1 1
```

```output1
2
```

```input2
55 55
```

```output2
3026
```



---

## F. 正方形的面积（特简单！）

### 【题目描述】

一天，土拨鼠白白在计算正方形的面积，已知正方形边长是Y。请你帮她算一算。

### 【输入】

正方形边长

### 【输出】

正方形的面积

## 输入数据 1

6

## 输出数据 1

36



---

## G. 长方形的面积（特简单！）

### 【题目描述】

一天，土拨鼠白白在计算长方形的面积，已知长方形的长是X，宽是Y。请你帮她算一算。

### 【输入】

长方形的长与宽

### 【输出】

长方形的面积

## 输入数据 1

4 5

## 输出数据 1

20



---

## H. 平行四边形的面积

### 【题目描述】

又是土拨鼠白白，她来计算平行四边形面积了。已知平行四边形的底是X，高是Y，请你帮她算一算。

### 【输入】

平行四边形的底与高

### 【输出】

平行四边形面积

## 输入数据 1

5 6

## 输出数据 1

30



---

## I. 三角形面积

### 【题目描述】

还是土拨鼠白白，她又来计算三角形面积了。已知三角形的底是X，高是Y，请你再帮她算一算。

### 【输入】

三角形的底与高

### 【输出】

三角形面积

## 输入数据 1

4 8

## 输出数据 1

16



---

## J. min(a,b)

# Background

Special for beginners, ^_^

# Description

Given two integers x and y, print the **min**.

# Format

## Input

Two integers x and y, satisfying $0\leq x,y\leq$**int max.**



## Output

One integer, the **min** of x and y.

# Samples

```input1
501 500
```

```output1
500
```

# Limitation

1s, 1024KiB for each test case.



---
