#include using namespace std; int main(){ int x = 300; int A[3] = {4, 16, 64}; int y = 500; A[3] = 256; A[4] = 1024; cout << A[3] << endl; cout << A[4] << endl; cout << x << " " << y << endl; return 0; }