Untitled
user_0563559
c_cpp
2 years ago
218 B
7
Indexable
#include <iostream>
using namespace std;
int main() {
int a, number, prod = 0;
cin >> a;
for (int i = 0; i < a; ++i) {
prod *= number;
}
cout << prod;
return 0;
}Editor is loading...