package
Zadatak;
import
java.util.Scanner;
public
class
P06411128 {
public
static
void
main(String[] args) {
Scanner input =
new
Scanner(System.in);
int
x, y;
x =
1
+ (
7
%
3
) * (
2
+
7
) /
2
;
y = (
1
+
7
) %
3
*
2
+
7
/
2
;
System.out.println(
"X = "
+ x);
System.out.print(
"y = "
+ y);
}
}