Problems
335 - Buying Milk
SUBMIT PROBLEM

Buying Milk

Time Limit: 1 sec

 

The Problem

Per liter milk is X taka. If you have Y taka them how many liters milk you can buy?

 

 

 

 

The Input

The input file contains a series of line. Each line contains two integer numbers, X (X<=100) and Y (Y<=10000). Input file terminated by EOF.

 

The Output

For each line of input output will show the result rounded to three decimal points in a separate line.

 

Sample Input

60 5000

12 1000

 

Sample Output

83.333 liter

83.333 liter

 

 

   

Problem Setter: Samia Safa Ahmed