Написал прогу но не заходит в систему проверки почему-то,чекал на компе вроде все норм,может тут есть проблема?
#include <iostream>
#include <stdio.h>
#include <math.h>
using namespace std;
int main()
{
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
double a, b, c;
cin >> a;
cin >> b; cin >> c;
double p = (a + b + c) / 2;
double s = sqrt((p*(p - a)*(p - b)*(p - c)));
printf("%.0f", s);
return 0;
}