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


/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		String s = "010203     101112    010203101112\n040506  +  131415 =  040506131415\n070809     161718    070809161718";
		System.out.println(s);
	}
}