COINS - Bytelandian gold coins


In Byteland they have a very strange monetary system.

Each Bytelandian gold coin has an integer number written on it. A coin n can be exchanged in a bank into three coins: n/2, n/3 and n/4. But these numbers are all rounded down (the banks have to make a profit).

You can also sell Bytelandian coins for American dollars. The exchange rate is 1:1. But you can not buy Bytelandian coins.

You have one gold coin. What is the maximum amount of American dollars you can get for it?

Input

The input will contain several test cases (not more than 10). Each testcase is a single line with a number n, 0 <= n <= 1 000 000 000. It is the number written on your coin.

Output

For each test case output a single line, containing the maximum amount of American dollars you can make.

Example

Input:
12
2

Output:
13
2

You can change 12 into 6, 4 and 3, and then change these into $6+$4+$3 = $13. If you try changing the coin 2 into 3 smaller coins, you will get 1, 0 and 0, and later you can get no more than $1 out of them. It is better just to change the 2 coin directly into $2.


hide comments
akshay tankha: 2012-05-15 09:06:38

getting wrong answer plz mre test cases

Ashish Raj: 2012-05-11 07:33:24

stopping condition in java ?

hell: 2012-04-21 14:25:25

what is the stopping condition in c

Rocker3011: 2012-03-21 20:42:58

long long int doesn´t work, use unsigned long long

Sachin Railhan: 2012-03-14 11:10:41

For C/C++ users:
Use long long int instead of long int.
Judge gave me WA when i used long int but it gave AC for long long int.
Hint:Don't consider every number.

stranger: 2012-03-13 01:18:35

2 giorgi:
no. I've got AC and the answer is

1000000000
4243218150

Besides you can not get less dollars then gold coins

Last edit: 2012-03-13 01:20:03
guliashvili: 2012-02-12 09:29:19

is 10833333 right for 1000000000 ? just say yes or no..

Pranjali Pratik: 2012-02-10 10:17:11

stopping condition of input??

Smit Mehta: 2012-01-12 15:21:22

I am getting TLE for recursion!! Any better way?

Got it :) by using recursion only.

Last edit: 2012-01-13 15:21:51
Anmol: 2011-12-25 12:12:13

i think theres a problem in input


Added by:Tomek Czajka
Date:2005-05-03
Time limit:9s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: NODEJS PERL6 VB.NET
Resource:Purdue Programming Contest Training