CF1080A.Petya and Origami

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Petya is having a party soon, and he has decided to invite his nn friends.

He wants to make invitations in the form of origami. For each invitation, he needs two red sheets, five green sheets, and eight blue sheets. The store sells an infinite number of notebooks of each color, but each notebook consists of only one color with kk sheets. That is, each notebook contains kk sheets of either red, green, or blue.

Find the minimum number of notebooks that Petya needs to buy to invite all nn of his friends.

输入格式

The first line contains two integers nn and kk ( 1n,k1081\leq n, k\leq 10^8 ) — the number of Petya's friends and the number of sheets in each notebook respectively.

输出格式

Print one number — the minimum number of notebooks that Petya needs to buy.

输入输出样例

  • 输入#1

    3 5
    

    输出#1

    10
    
  • 输入#2

    15 6
    

    输出#2

    38
    

说明/提示

In the first example, we need 22 red notebooks, 33 green notebooks, and 55 blue notebooks.

In the second example, we need 55 red notebooks, 1313 green notebooks, and 2020 blue notebooks.

首页