This is the code. When I run it, nothing appears, just darkness. Blank. I'm a beginner, and I don't really know too much about coding. Any help would be appreciated.
#include <iostream>
using namespace std;
int main()
float x;
float y;
float Wynik;
x = 1.4;
y = 5.8;
Wynik = (x * y + x + y) / (x-y);
return 0;
}