}
}
class Dddd
{
public static void main(String[] args)
{
for(String arg:args)
{
System.out.print(arg);
}
}
}
class ReflectPoint
{
public int x;
private int y;
public String str1="abcdddd";
public String str2="base";
public String str3="bee";
public ReflectPoint(int x, int y) {
super();
this.x = x;
this.y = y;
}
public String toString()
{
return str1+":"+str2+"::"+str3;
}