#include class Samochod { private: std::string marka; int rok; public: Samochod(std::string m, int r) : marka(m), rok(r) {} }; int main() {}