/*
是某某的1/x 居然被翻译成:
which is x times less than ...
*/
#include <stdio.h>
int main() {
int x;
scanf("%d", &x);
printf("%d\n", (x<<1) + 1);
return 0;
}
sgu 403
最新推荐文章于 2016-02-23 21:07:00 发布
/*
是某某的1/x 居然被翻译成:
which is x times less than ...
*/
#include <stdio.h>
int main() {
int x;
scanf("%d", &x);
printf("%d\n", (x<<1) + 1);
return 0;
}