#include <iostream>
using namespace std;//nie jest potrzebne

int pies, kot, ptak;

void f(int a) {}//funkcja ma swoj adress

int main() {
  int i, j, k;
cout<<(long)&i<<endl<<(long)&j<<endl<<(long)&k<<endl;
cout<<(long)&pies<<endl<<(long)&kot<<endl<<(long)&ptak<<(long)&f<<endl;
system("pause");  
}
