#include<stdio.h>

struct s {
   int a,b;
   float f;
};

int main(void)
{
   struct s m,p;

   scanf("%d", &m.a);
   m.b=m.a*10;

   p=m;
   p.f=p.a+p.b;

   while(p.f > 2.0) {
      if((p.f > 100.0) && (m.a == p.a)) 
         printf("Saída 1");
      if(p.f <= 5.0)
         printf("Saída 2");
      p.f=p.f/2;
   }
}