#include <iostream>
#include <string>

class Aktor {
  public:
    std::string ImieNazw;
    Aktor(std::string imieNazw) : ImieNazw(imieNazw) {}
};
class Film {
  public:
    std::string Tytul;
    Aktor *GlownaRola;
    Film(std::string tytul, Aktor *glownaRola) : Tytul(tytul) {
      GlownaRola = glownaRola;
      std::cout << Tytul << "\nW glownej roli wystepuje " << GlownaRola->ImieNazw << std::endl;
    }
};

int main() {
	Aktor *aktor1 = new Aktor("Cezary Pazura");
	Film *film1 = new Film("Kiler", aktor1);
	return 0;
}