#include <iostream>
using namespace std;
int main(){
	int N;
	cin>>N;
	if(N>10){
		cout<<10<<" "<<N-10<<endl;
	}else{
		cout<<1<<" "<<N-1<<endl;
	}
	return 0;
}