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()
|
|
{
|
|
int n, k;
|
|
scanf("%d%d", &n, &k);
|
|
printf("%d", (n == 1) ? 1 : (k < n - k + 1 ? k : n - k + 1) << 1);
|
|
} |