#include <iostream>
int main()
{
int a,b,c,x;
std::cout << "a="; std::cin >> a;
std::cout << "b="; std::cin >> b;
std::cout << "c="; std::cin >> c;
std::cout << "x="; std::cin >> x;
if ( a % x == 0 && b % x == 0 && c % x == 0 )
{
std::cout << "DA";
} else
{
std::cout << "NU";
}
return 0;
}