forked from krishna14kant/Data-Structures-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path122A.cpp
More file actions
28 lines (26 loc) · 718 Bytes
/
122A.cpp
File metadata and controls
28 lines (26 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//🎃🎃🎃😎😎😁🤓☣☣☣☣☣dark_coder☣☣☣☣☣😎😎😁🤓🎃🎃🎃
#include <bits/stdc++.h>
using namespace std;
#define IOS ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#define all(x) (x).begin(), (x).end()
#define li long long int
#define pi pair<int,int>
int main()
{
IOS
int n;
cin>>n;
for (int i = 1; i <; i++)
{
if(n%i==0){
int temp=n/i;
string s=to_string(temp),si=to_string(i);
if(all_of(all(s),[] (char c){return c=='7'||c=='4';})){
cout<<"YES";
return 0;
}
}
else continue;
}cout<<"NO";
return 0;
}