//duplicate friendly code for testing same

public class DupDup {
	public void A() {
		String[] s = new String[5];
		for (int i=0; i<s.length; i++) {
			s[i] = "hello";
		}
		
		//once more with feeling
		for (int i=0; i<s.length; i++) {
			s[i] = "hello";
		}

		//once more with feeling
		for (int i=0; i<s.length; i++) {
			s[i] = "world";
		}
	}

	public void B() {
		String[] s = new String[5];
		for (int i=0; i<s.length; i++) {
			s[i] = "hello";
		}
		
		//once more with feeling
		for (int i=0; i<s.length; i++) {
			s[i] = "hello";
		}

		//once more with feeling
		for (int i=0; i<s.length; i++) {
			s[i] = "world";
		}
	}
}