/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		System.out.println("Long: " + (6 * 10000000l));
		System.out.println("Int: " + (8 * 10000000));
		System.out.println("float: " + (901 * 1000000f));
		System.out.println("double: " + (367 * 1000000d));
	}
}