#include <stdio.h>
#include <math.h>
#include <stdlib.h>
#include <string.h>
int main(void)
{
int input;
while(scanf("%d",&input)!=EOF)
{
if(input>0 && input<pow(2,31))
{
if(input%2 == 0)
printf("%d\n",input);
else
printf("%d\n",input-1);
}
}
return 0;
}
沒有留言:
張貼留言