#include <iostream>
using namespace std;
int main()
{
int dias, bruto, retencion = 0;
cout << "\nDias trabajados: ";
cin >> dias;
bruto = dias * 250;
cout << "\nSueldo Bruto: " << bruto;
if (bruto >= 1500)
{
retencion = 1500 * 0.10;
cout << "\nRetenciom IMSS: " << retencion;
}
else
cout << "\nRetencion IMSS: Sin retencion";
cout << "\nSueldo neto: " << bruto - retencion << endl;
return 0;
}