#include <stdio.h>
#include <math.h>
double fun();
int main() {
double res = fun();
const double eps = 1e-6;
if (fabs(res) < eps)
printf("OK!");
return 0;
}
// DO NOT EDIT THE CODE OF THIS FUNCTION - AI
double fun() {
return (1.0 / 13) * (pow(((2 - 1.0) / 12 + 1.0), 12) - 1);
}