Java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int height1 = sc.nextInt();
int weight1 = sc.nextInt();
int height2 = sc.nextInt();
int weight2 = sc.nextInt();
if ((height2 < height1) && (weight2 < weight1))
System.out.println(true);
else
System.out.println(false);
}
}
|
cs |