#include <iostream>
using namespace std;
void shit(int a, short b){
cout << &a << " " << &b <<" "<< (unsigned)&a -(unsigned)&b;	
}
int main() {
	// your code goes here
	int a;
	short b;
	shit(a,b);
	return 0;
}