Rabbit Clover went to the bakery for pies. One pie costs A rub and B kop. Determine how many rubs and kops you need to pay for N pies.
Input data:
The program receives three integers as input: A, B, N
Output data:
The program should output two numbers: the purchase price in rubs and kops (see the output format for examples)
Examples
Input:
10 15 2
Output:
20rub. 30kop.
Input:
2 50 4
Output:
10rub. 0kop.