#include <stdio.h>

int main() {
	int n;

	scanf("%d", &n);
	if (n % 2 == 0) printf("%d\n", n);
	else printf("%d\n", n + 1);

	return 0;
}