#include int main() { int a, b; scanf("%d %d", &a, &b); printf("%s", a % b == 0 || b % a == 0 ? "TRUE" : "FALSE"); return 0; }