题目:两个整数和能否整除 86

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import java.util.Scanner;

public class Main {

public static void main(String[] args) {

Scanner sc = new Scanner(System.in);

while(sc.hasNext()) {
int a = sc.nextInt();
int b = sc.nextInt();

if ((a + b) % 86 == 0) {
System.out.println("yes");
} else {
System.out.println("no");
}
}

}
}