public class T4165 {
	void m(int i) {
		for (;;) {
			//---
			if (i == 0)
				continue;	
			if (i != 5)	
				continue;	
			//---	
		}
	}

}
