aboutsummaryrefslogtreecommitdiff
path: root/ParanormixPredictions/main.cpp
diff options
context:
space:
mode:
authoromagdy7 <omar.professional8777@gmail.com>2022-06-28 01:03:54 +0200
committeromagdy7 <omar.professional8777@gmail.com>2022-06-28 01:03:54 +0200
commit7860cb994fbf6af63865eb6dc9045bbc8abd61a4 (patch)
tree0cf4fab4387fd47ee8c6d4e2a069cc96579df6dc /ParanormixPredictions/main.cpp
parent13ae5b6eaaa4779009633eda567b4f1735669ac3 (diff)
downloadcompetitive-programming-7860cb994fbf6af63865eb6dc9045bbc8abd61a4.tar.xz
competitive-programming-7860cb994fbf6af63865eb6dc9045bbc8abd61a4.zip
solved a couple of problems from codefoces
Diffstat (limited to 'ParanormixPredictions/main.cpp')
-rw-r--r--ParanormixPredictions/main.cpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/ParanormixPredictions/main.cpp b/ParanormixPredictions/main.cpp
new file mode 100644
index 0000000..771fafc
--- /dev/null
+++ b/ParanormixPredictions/main.cpp
@@ -0,0 +1,25 @@
+#include<bits/stdc++.h>
+
+using namespace std;
+
+int main () {
+ ios_base::sync_with_stdio(false);
+ cin.tie(NULL);
+ int n, m;
+ cin >> n >> m;
+ vector<int> primes;
+ for(int i = 2; i <= 50;i++) {
+ bool ok = 1;
+ for(int j = 2; j * j <= i; j++) {
+ if(i % j == 0) {
+ ok = 0;
+ break;
+ }
+ }
+ if(ok) {
+ primes.push_back(i);
+ }
+ }
+ int indx = (upper_bound(primes.begin(), primes.end(), n) - primes.begin());
+ (m == primes[indx]) ? cout << "YES" : cout << "NO";
+}