Advertisement
Raul_julian

Avioes-[OBI]

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