/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	static int foo() {
		System.out.println("foo");
		return 1;
	}
	static int bar() {
		System.out.println("bar");
		return 3;
	}
	public static void main (String[] args) throws java.lang.Exception
	{
		int f = 1, b = 3;
		int x = -1, y = -1;
		int temp = (f < b) ? (x=foo()) : (y=bar());
		System.out.println("x="+x+", y="+y);
	}
}