import java.io.IOException;
import java.util.Scanner;
    
class Real {
    public static void main(String[] args) throws IOException {
        Scanner le = new Scanner(System.in);
        System.out.println("Digite um número real");
        double real = Double.parseDouble(le.nextLine());
        System.out.println("O número digitado é:" + real);
    }
}