public static void main(String args[]){
System.out.print("Leistung in kW: ");
Scanner scan = new Scanner(System.in);
double kiloWatts = scan.nextDouble();
double horsePower = 1.341022 * kiloWatts;
System.out.println(kiloWatts + "kW entsprechen " + horsePower + "PS.");
}