JAVA
java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package javaapplication4;
import java.util.Scanner;
public class JavaApplication {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
double Height = scan.nextDouble();
double Width = scan.nextDouble();
String Sentence = scan.nextLine();
System.out.println(Sentence +" "+ Height +" "+ Width);
}
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run