#include<iostream>
using namespace std;

#include<wxmaths.h>
using namespace wxmaths;

int main()
{
Realfunction2d *f; cin >> f; cout << *f << endl << f << endl;
double x, y; cin >> x >> y;
double fn = (*f)(x,y); cout << fn << endl;
return 0;
}
