0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 16:45:25 +00:00
OI-codes/AcWing/738/738.cpp

15 lines
198 B
C++
Raw Normal View History

#include <bits/stdc++.h>
using namespace std;
int main() {
int v;
cin >> v;
for (int i = 0, x = v; i < 10; i++, x *= 2) {
printf("N[%d] = %d\n", i, x);
}
return 0;
}