#include <iostream>
 
int main() {
    
    int x[10];
    int *y = x;
    
    std::cout << &x[0] << ", " << x << ", " << y << std::endl;    
}