next odd number by cgy4ever

#include<iostream>\x0d
int main()\x0d
{\x0d
    int a;\x0d
    while(std::cin>>a)\x0d
        std::cout<<a+1+(a&1)<<"\n";\x0d
    return 0;\x0d
}\x0d

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page