← 返回 twosigma 的题目列表Calculate y/x using Patch
类型:online_judge
Write a program to calculate the result of y/x, where y and x are integers. Ensure that x is non-zero.
Requirements:
Input: Two integers y and x.
Output: The result of y/x, formatted to two decimal places.
Input Format:
10 2
Output Format:
5.00
Example
Input
10 2