Advertisement
Raul_julian

Selo-[OBI]

Jun 17th, 2013
308
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.17 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5.     int N;
  6.  
  7.     scanf("%d", &N);
  8.    
  9.     if(N<1 || N>10000000000) return 0; 
  10.  
  11.     if(N%2==0) printf("S");
  12.     else printf("N");
  13.  
  14. return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement