#Z12501. 计算浮点数相除的余数

计算浮点数相除的余数

Description

Calculate the remainder of dividing two double-precision floating-point numbers, aa and bb, where both aa and bb are double-precision floating-point numbers. The remainder (r)(r) is defined as: a=k×b+ra = k \times b + r, where kk is an integer, and 0r<b0 \leq r < b.

Input Format

The input consists of a single line containing two double-precision floating-point numbers, aa and bb.

Output Format

The output is a single line, the remainder of a÷ba \div b.

73.263 0.9973

0.4601