10f66f451Sopenharmony_cidefine x() {
20f66f451Sopenharmony_ci"x"
30f66f451Sopenharmony_cireturn ( 1 )
40f66f451Sopenharmony_ci}
50f66f451Sopenharmony_cidefine y() {
60f66f451Sopenharmony_ci"y"
70f66f451Sopenharmony_cireturn (2)
80f66f451Sopenharmony_ci}
90f66f451Sopenharmony_cidefine z() {
100f66f451Sopenharmony_ci"z"
110f66f451Sopenharmony_cireturn (3)
120f66f451Sopenharmony_ci}
130f66f451Sopenharmony_ci
140f66f451Sopenharmony_ciif ( x() == y() ) {1}
150f66f451Sopenharmony_ci1
160f66f451Sopenharmony_ciif ( x() <= y() ) {2}
170f66f451Sopenharmony_ciif ( y() >= x() ) {3}
180f66f451Sopenharmony_ciif ( x() != y() ) {4}
190f66f451Sopenharmony_ciif ( x() < y() ) {5}
200f66f451Sopenharmony_ciif ( y() > x() ) {6}
210f66f451Sopenharmony_ci
220f66f451Sopenharmony_ciif ( x() == z() ) {11}
230f66f451Sopenharmony_ci11
240f66f451Sopenharmony_ciif ( x() <= z() ) {12}
250f66f451Sopenharmony_ciif ( z() >= x() ) {13}
260f66f451Sopenharmony_ciif ( x() != z() ) {14}
270f66f451Sopenharmony_ciif ( x() < z() ) {15}
280f66f451Sopenharmony_ciif ( z() > x() ) {16}
290f66f451Sopenharmony_ci
300f66f451Sopenharmony_cix = -10
310f66f451Sopenharmony_ciwhile (x <= 0) {
320f66f451Sopenharmony_ci	x
330f66f451Sopenharmony_ci	if (x == -5) break;
340f66f451Sopenharmony_ci	x += 1
350f66f451Sopenharmony_ci}
360f66f451Sopenharmony_ci
370f66f451Sopenharmony_cidefine u() {
380f66f451Sopenharmony_ci	auto a[];
390f66f451Sopenharmony_ci	return a[0]
400f66f451Sopenharmony_ci}
410f66f451Sopenharmony_ci
420f66f451Sopenharmony_ciu()
430f66f451Sopenharmony_ci
440f66f451Sopenharmony_ciif (x == -4) x
450f66f451Sopenharmony_cielse x - 4
46