Nhập và Xuất ver 2

View as PDF

Submit solution

Points: 0.01
Time limit: 1.0s
Memory limit: 64M
Input: stdin
Output: stdout

Authors:
Problem type

Cho 1 số nguyên thực a (Với 1≤a≤1000). Hãy xuất ra giá trị y với y=a/2.


Input

Dòng đầu tiên có chứa 1 số thực a (Với 1≤a≤1000).


Output

Một dòng duy nhất là số y.

Simple Examples

Input

1

Output

0.5

Note
Test 1: Cho a=1. Suy ra y=1/2=0.5. Vậy ta phải xuất ra 0.5.

Test 2: Cho a=3. Suy ra y=3/2=1.5. Vậy ta phải xuất ra 1.5.


Comments

Please read the guidelines before commenting.


There are no comments at the moment.