public class Test {
static boolean XYZ(char a)
{
System.out.print(a);
return true;
}
public static void main(String args[])
{
int i=0;
for(XYZ(\'P\'); XYZ(\'Q\')&&(i<2); XYZ(\'R\'))
{
i++;
XYZ(\'S\');
}
}
}
PQSRQSRQ