public class Main
{
public static void main(String[]arg)
{
//要创建一个接收输入的对象
Scanner sc=new Scanner(System.in);
//接收n,h,m三个值
int n=sc.nextInt();
int h=sc.nextInt();
int m=sc.nextInt();
int k=0;
//do while 循环来解决输入的m值过大的情况 用k值来做判断
do {
if (m <=n*h)
{
int out=(n-m/h);
if(m%h==0)
{
System.out.println(out);
}
else
{
System.out.println(out-1);
}
k=0;
}else
{
System.out.println("m数值过大 请重新输入");
k=1;
m=sc.nextInt();
}
}while(k==1);
}
}