#include using namespace std; int main() { int v[] = {2, 3, 4, 5}, p = 0; for (int i = 1; i < 4; i++) p = p * i; cout << p; return 0; }