You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include <cstdio>
|
|
int main()
|
|
{
|
|
long long n;
|
|
scanf("%I64d", &n);
|
|
n == 1 || n == 2 ? printf("-1") : n & 1 ? printf("%I64d %I64d", (n * n - 1) / 2, (n * n + 1) / 2) : printf("%I64d %I64d", (n / 2) * (n / 2) + 1, (n / 2) * (n / 2) - 1);
|
|
return 0;
|
|
}
|