#include <iostream>
#include "./Pas.h"

using namespace std;

int main() {
	Pas p("Test", "10.1.2024");

	cout << p.toString();
	return 0;
}