#include "stdio.h"
int main(void)
{
int N,U,D;
scanf("%d%d%d",&N,&U,&D);
int len=0,time=0;
while (1)
{
if(len>=N)
{
printf("%d",time);
return 0;
}
if(time%2==0)
{
len+=U;
} else
{
len-=D;
}
time++;
}
}



