class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		System.out.println("abc".replace("", "k"));
		System.out.println("".replace("", "k"));
	}
}