Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int main(void) {
- unsigned n;
- scanf("%d", &n);
- if (n % 2) {
- printf("%d %d\n", n - 2, n - 4);
- } else {
- printf("%d %d\n", n - 1, n - 3);
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement