Problems
326 - Racing Moto Again
SUBMIT PROBLEM

Racing Moto Again

Time Limit: 1 sec

 

The Problem

Racing Moto is a racing game. Here is N levels. In every level you will get M points. After completing all the levels you will get a bonus of L%. Calculate Total points you get?

Example:

N = 10

M = 10000

L = 12

Total = 112000

 

 

The Input

Input file will contain a series of line. Each line contains three integer values N (N<=15), M (M<=10000000), L (L<=20). Input file is terminated by EOF.

 

The Output

For each line of input output file will print the Total points in a separate line.

 

Sample Input

10 10000 12

9 23203 8

7 23911 6

 

Sample Output

112000 Points

225533 Points

177419 Points

 

 

 

 

Problem Setter: Samia Safa Ahmed