# 你干嘛~~~

## 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. 土拨鼠的年龄

# Background

土拨鼠妈妈对土拨鼠猴猴说，我的年龄是你的**a**倍还要多**b**岁！

已知妈妈的年龄是**x**岁。

请问土拨鼠猴猴的年龄是多少岁。


# Format

## Input

一行输入三个整数$a, b, x$

## Output

输出一行一个整数, 表示猴猴的年龄

# Samples

```input1
5 6 31
```

```output1
5
```

# Limitation

$1 <= a, b, x <= 10^9$

保证一定能得到答案



---

## C. 小白必做

小白必做 ^_^

没有输入和输出~

记得定义主函数



---
