class Ideone {
	public static void main (String[] args) {
		System.out.println(1 / 1000.0 / 1000.0 / 1000.0);
		System.out.println(1 / 1e9);
	}
}