코드 ¶
#include <stdio.h> int main() { int i,j; long long int n=0,p,count=0; for(;!feof(stdin);){ count=0; if(n!=0){ printf("\n"); } scanf("%lld",&n); p=n; for(i=0;p>1;i++){ if(count%2==0){ if(p%9!=0){ p=p/9+1; }else{ p/=9; } }else{ if(p%2!=0){ p=p/2+1; }else{ p/=2; } } count++; } if(count%2!=0){ printf("Stan wins."); }else{ printf("Ollie wins."); } } return 0; }