public class GTrand {
    public static void main(String[] args) {
        double rando = Math.random();
        System.out.println(rando);
    }
}
