#include<iostream>
#include<cmath>
#include<algorithm>
#include<iomanip>
#include<climits>
#include<numeric>
#include<set>
#include<sstream>
#include<map>
#include<vector>
#include<string>
using namespace std;
vector<string> split(string haystack, string needle) {
vector<string> result;
int start_pos = 0;
int found_pos = haystack.find(needle, start_pos);
while (found_pos != string::npos) {
int count = found_pos - start_pos;
string token = haystack.substr(start_pos, count);
if (!token.empty()) {
result.push_back(token);
}
start_pos = found_pos + needle.length();
found_pos = haystack.find(needle, start_pos);
}
string token = haystack.substr(start_pos, haystack.length()-start_pos);
if (!token.empty()) {
result.push_back(token);
}
return result;
}
string nameConvert(const string& name) {
const string DELIMITER = " ";
stringstream builder;
auto parts = split(name, DELIMITER);
for (auto part : parts) {
part[0] = toupper(part[0]);
transform(part.begin()+1, part.end(),part.begin()+1, ::tolower);
builder << part << DELIMITER;
}
return builder.str();
}
string dateConvert(const string& date) {
const string DELIMITER = "/";
stringstream builder;
auto parts = split(date, DELIMITER);
builder << setw(2) << setfill('0') << parts[0] << DELIMITER;
builder << setw(2) << setfill('0') << parts[1] << DELIMITER;
builder << parts[2];
return builder.str();
}
bool isPrime(long long n) {
for (int i = 2;i * i <= n;i++) {
if (n % i == 0) {
return false;
}
}
return n >= 2;
}
bool isAllDigitPrime(string n) {
for (int i = 0;i < n.length();i++) {
if (n[i] != '2' && n[i] != '3' && n[i] != '5' && n[i] != '7') {
return false;
}
}
return true;
}
bool isSumDigitPrime(string n) {
long long sum = 0;
for (int i = 0;i < n.length();i++) {
sum = sum + (n[i] - '0');
}
return isPrime(sum);
}
int main() {
string s;cin >> s;
if (isAllDigitPrime(s) && isSumDigitPrime(s)) {
cout << "YES";
}
else {
cout << "NO";
}
}