lab4(137)
#include <iostream>
using namespace std;
int main() {
unsigned int a, b;
float c, d;
cin>>a>>b>>c>>d;
if(a%b==c || a%b==d){
cout << "Верно";
} else{
cout << "Неверно";
}
return 0;
}INFO
#include <iostream>
using namespace std;
int main() {
unsigned int a, b;
float c, d;
cin>>a>>b>>c>>d;
if(a%b==c || a%b==d){
cout << "Верно";
} else{
cout << "Неверно";
}
return 0;
}