#ABC128A. Apple Pie

Apple Pie

题目描述

We have AA apples and PP pieces of apple.

We can cut an apple into three pieces of apple, and make one apple pie by simmering two pieces of apple in a pan.

Find the maximum number of apple pies we can make with what we have now.

我们有 AA 个苹果和 PP 块苹果。

我们可以把一个苹果切成三块,把两块苹果放在锅里煮,做成一个苹果派。

求我们现在最多可以做多少个苹果派。

输入格式

输入内容按以下格式标准输入:

AA PP

输出格式

打印我们现有的苹果派最多能做多少个。

样例 #1

样例输入 #1

1 3

样例输出 #1

3

样例 #2

样例输入 #2

0 1

样例输出 #2

0

样例 #3

样例输入 #3

32 21

样例输出 #3

58

说明

数据规模与约定

  • 所有输入值均为整数。
  • 0A,P1000 \leq A, P \leq 100

样例 11 解释

我们可以先将三块苹果中的两块炖煮,制作一个苹果派。然后,我们可以用剩下的一块苹果和切成整块的三块苹果再做成两个苹果派。

样例 22 解释

很遗憾,我们无法在这种情况下制作苹果派。