import java.util.Scanner;
public class PrintValue {
public static void main(String[] args) {
Scanner s = new Scanner(System.in);
System.out.println("Enter a Integer Value: ");
int int1 = s.nextInt();
System.out.println("Enter a Float Value: ");
float float2 = s.nextFloat();
System.out.println("Enter a Double Value: ");
double double3 = s.nextDouble();
System.out.println("Enter a Long Value: ");
long long4 = s.nextLong();
System.out.println("Enter a Short Value: ");
short short5 = s.nextShort();
System.out.println("Enter a Boolean Value: ");
boolean boolean6=s.nextBoolean();
System.out.println("Enter a Character Value: ");
char char7=s.next().charAt(0);
System.out.println("Enter a String Value:(only one word ");
String str8 = s.next();