-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCompare The Triplets
39 lines (32 loc) · 1 KB
/
Compare The Triplets
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import java.io.*;
import java.math.*;
import java.security.*;
import java.text.*;
import java.util.*;
import java.util.concurrent.*;
import java.util.function.*;
import java.util.regex.*;
import java.util.stream.*;
import static java.util.stream.Collectors.joining;
import static java.util.stream.Collectors.toList;
public class Solution {
public static void main(String[] args) {
/* Enter your code here. Read input from STDIN. Print output to STDOUT. Your class should be named Solution. */
Scanner scan = new Scanner(System.in);
// int N = scan.nextInt();
int[] alice = new int[3];
int[] bob = new int[3];
int a=0, b=0;
for(int i=0;i<3;i++)
alice[i]=scan.nextInt();
for(int i=0;i<3;i++)
bob[i]=scan.nextInt();
for(int i=0;i<3;i++)
if(alice[i]>bob[i])
a++;
else if(alice[i]<bob[i])
b++;
System.out.println(a+" "+b);
scan.close();
}
}