import java.util.Scanner;
public class Theme {
public static void main(String[] args) {
int x = 0; // 鸡的个数
int y ; // 兔的个数
public static void main(String[] args) {
int x = 0; // 鸡的个数
int y ; // 兔的个数
for (; x <= 35; x++) {
y = 35 - x;
if ((2 * x + 4 * y) == 94) {
System.out.println("鸡的个数:" + x + "\n兔的个数:" + y);
break;
}
System.out.println("鸡的个数:" + x + "\n兔的个数:" + y);
break;
}
}
}
}
}