Liquidity ratios

Task

Write a program that can be used to determine the liquidity of a company, by means of the “current ratio” and “acid test ratio”.

\[ \frac{\text{Current assests} - \text{Accounts receivable over more than 1 year}}{\text{debts within 1 year} + \text{Liabilities}} \]

\[ \frac{\text{Current assets} - \text{Accounts receivable over more than 1 year} - \text{inventories and orders in progress}}{\text{debts within 1 year} } \]

Specifications

Input

Five numbers, respectively the current assets, the long-term receivables, the debts within 1 year, the liabilities, and the inventories and orders in progress. All numbers are expressed in 1000 euros and are all doubles (that are numbers with a maximum of 2 decimal places after the decimal point).

Output4

Two lines, respectively the current ratio and the acit test ratio:

De current ratio van de onderneming bedraagt: x

De acid test ratio van de onderneming bedraagt: x

Example

Below is a sample output of the task. The text in red represents user input and is logically not printed out by your program.

15.5
6
4
0.5
7
De current ratio van de onderneming bedraagt: 2.11
De acid test ratio van de onderneming bedraagt: 0.62

Remarks and tips