Guest User

Untitled

a guest
Jan 16th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main ()
  4. {
  5. long long n;
  6. cin >> n;
  7. if (n%2==0) cout << 4 << " "<< n-4;
  8. else cout << 9 << " "<< n-9;
  9. }
Add Comment
Please, Sign In to add comment