#include #define int long long using namespace std; bool isPrime(int N) { if(N<2) return false; for(int i=2;i*i<=N;i++){ if(N%i==0) return false; } return true; } signed main() { cin.tie(0); ios::sync_with_stdio(false); int N; cin>>N; if(isPrime(N)){ cout<<"Sosu!"<