#include using namespace::std; int main() { double s; cout << "Ile masz stazu gosciu : "; cin >> s; if (s<=3) { cout<< "twoja wyplata wynosi" << 1600+130*s << "zlotych"; } else { cout << "twoja wyplata wynosi" << 2500+100*s << "zlotych"; } }