#include <iostream>
#include <vector>
#include <cmath>
#include <iomanip>
#include <fstream>
using namespace std;


int main() {
	int pont = 0;
/*	
	int a = nulla();
	if (a==0) ++pont; else cout << "A feltetel a "<<__LINE__<<" sorban nem teljesul"<<endl;
	
	int b = harommaltobbmint(a);
	if (b==3 && harommaltobbmint(1)==4) ++pont; else cout << "A feltetel a "<<__LINE__<<" sorban nem teljesul"<<endl;
	
	S s;
	s.m=0.5;
	s.h=1;
	if (s.m==0.5 && s.h==1) ++pont; else cout << "A feltetel a "<<__LINE__<<" sorban nem teljesul"<<endl;
	
	vector<float> v(10);
	for (int i=0;i<10;i++) 
		v[i]=sin(i);
	S mx = maxker(v); // m:mennyi, h:hol
	if (mx.m>0.98935 && mx.m<0.9894 && mx.h==8) ++pont; else cout << "A feltetel a "<<__LINE__<<" sorban nem teljesul"<<endl;

	ofstream ki("__ep.txt");
	ki << fixed << setprecision(3); // fix 3 tizedes pontossaggal irunk a fajlba 
	kiir(ki,mx);
	ki.close();
	ifstream be("__ep.txt");
	string sor;
	getline(be,sor);
	if (sor=="0.989 8") ++pont; else cout << "A feltetel a "<<__LINE__<<" sorban nem teljesul"<<endl;
*/	
	cout << endl << pont << "/5 pont" << endl;
}
