Problems
250 - Racing Moto
SUBMIT PROBLEM

Racing Moto

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 three integer values N (N<=15), M (M<=10000000), L (L<=20).

 

The Output

Output file will print the Total points in a separate line.

 

Sample Input

10 10000 12

 

Sample Output

112000 Points

 

 

 

 

Problem Setter: Samia Safa Ahmed