#!/usr/bin/env python

import time
import random

v = random.random() * 6
time.sleep(v)
print(f"{v:.2f}")
