Skip to content

Instantly share code, notes, and snippets.

@ArthurLoboLobo
Created June 19, 2023 14:42
Show Gist options
  • Save ArthurLoboLobo/d2efad02c6f5fb40d56d3e7e17deed53 to your computer and use it in GitHub Desktop.
Save ArthurLoboLobo/d2efad02c6f5fb40d56d3e7e17deed53 to your computer and use it in GitHub Desktop.
#include<bits/stdc++.h>
using namespace std;
int main() {
int x,y; cin >> x >> y;
if(-8 <= x && x <= 8 && 0 <= y && y <= 8) {
cout << 'S' << endl;
}
else {
cout << 'N' << endl;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment