import java.util.Scanner;
// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int c = 0;
if(n==4){
System.out.println(2);
System.out.println(2);//任何一个数除以1都会没有余数,所以当偶数为4,特殊处理
}
else{for (int i = n / 2; i >= 2; i--) { //将这个偶数分两半,
if (c == 1) {
break;
} else {
for (int j = 2; j < i; j++) {
if (i % j == 0) {
break;
} else if (j == i - 1) { //从中间开始往左边找到最大的素数
for (int k = 2; k < n - i; k++) { //算出另一个数
if ((n - i) % k == 0) {
break;
}
if (k == (n - i - 1)) {//然后判断是不是素数
c++; //是的话就直接结束循环,因为这两个数必然是差值最小的
System.out.println(i);
System.out.println(n-i);
}
}
}
}
}
}
}
}
}