问题3215--A Very Simple Problem

3215: A Very Simple Problem

[命题人 : ]
时间限制 : 4.000 sec  内存限制 : 64 MB

题目描述

It’s quite simple problem, really. -- by hidadz. As she said, this is a very simple problem. Given three integers N, x, and M, your task is to calculate out the following value:

输入

There are several test cases. For each case, there is a line with three integers N, x, and M, where 1 ≤ N, M ≤ 2*109, and 1 ≤ x ≤ 50. The input ends up with three negative numbers, which should not be processed as a case.

输出

For each test case, print a line with an integer indicating the result.

样例输入 Copy

100 1 10000
3 4 1000
-1 -1 -1

样例输出 Copy

5050
444

来源/分类

multi