#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <locale.h>


int main(){
	setlocale(LC_ALL, "rus");
	system("color 2");
	int i, a, b, c, p;
	int x, n, count;
	float y;
	printf("Введите значение x = ");
	scanf("%d", &x);
	y = 1.*(3 + x * x)/(x * x * (x * x - 49));
	printf("Значение функции y равно %f", y);
}


