#include #include int main() { printf("20\n"); for (int i = 0; i <= 19; i++) { printf("%.0lf ", pow((double)2,(double)i)); } return 0; }