#include #include "distance.h" using namespace std; int main() { double hauteur; double rayonPlanete; double horizon; cin >> hauteur >> rayonPlanete; horizon = Distance(hauteur, rayonPlanete); cout << horizon; }