游客 Signup | Login
中文 | En

2420 - 卖皮鞋

有90双儿童皮鞋,每天卖出8双,卖多少天后剩下2双?

Input

本题无输入。

Output

输出问题的解,并在行末输出一个换行符。

Examples

Input

本题无输入样例

Output

11

Solution C

#include<stdio.h>

int main()
{
	int a,b,c,d;
	a=90;
	b=8;
	c=2;
	d=(a-c)/b;
	printf("%d\n",d);
	return 0;
}

Solution C++

#include<stdio.h>

int main()
{
	int a,b,c,d;
	a=90;
	b=8;
	c=2;
	d=(a-c)/b;
	printf("%d\n",d);
	return 0;
}
Time Limit 1 second
Memory Limit 128 MB
Discuss Stats
上一题 下一题