Arara!
Problem LinkSolution by Mr.Olimpia — 100 pts
Code / Notes
#include <bits/stdc++.h>
using namespace std;
int main() {
int A;
int G;
cin >> A >> G;
if(5*A-4>G){
cout << "N";
}
else {
cout << "S";
}
}
Last updated 1 month, 4 weeks ago