#include <cstdio>
#include <cmath>

typedef double(*unko_t[])(double);
unko_t table{ &std::sin, &std::cos, &std::tan };

auto main() -> int
{
	std::printf("%.2lf\n", table[1](3.1 / 4));
}
