import java.util.*; public class RandomDriver { public static void main(String[] args) { double r; r = Math.random(); System.out.println(r); } }