fun21.calc - [2021 Fun]Urumi's Calculation


Version: v4

Submit Problemset 1000ms / 262144 KB
Difficulty:1.0x

Statement

Welcome to 2021! Another year with another hope!

In this task, you are going to play with Urumi.

Urumi

She decides to throw a stone baby into the Sanzo river to beg for good luck. It's known that the Sanzo river has a depth of $D$ and the acceleration of the stone is $a$

How long does it take the stone baby to fall?

Task

Write a program that:

Input

Two integers, $D$ and $a$. ($1\leq D,a\leq 1000$)

Output

A single float $T$

Example

[In]
5 10
[Output]
1.000
[Explain]
Score is 100

Scoring

There are 20 testcases.

The judger will compare your output with the correct answer in string. Let $P$ to be the first digit/symbol that are not the same.

You should not print leading and trailing 0s.

Examples:


Submit