#include <iostream>

struct foo {
  virtual int moo() {return 0;}
};


struct bar {
  virtual int goo() {return 1;}
};

int main(void) {
	std::cout << &foo::moo 
       << " " << &bar::goo;
	return 0;
}
