#include int main(void){ int N; scanf("%d",&N); for(int i = 10; i > 0; i--){ if(N - i > 0){ printf("%d %d\n",i,N-i); return 0; } } return 0; }