游客 Signup | Login
中文 | En

2410 - 混合运算II

写一个程序,计算123123456-32113579值,并在计算机屏幕上输出。
要求输出结果后再输出一个换行符。

Input

本题无输入。

Output

写一个程序,计算123123456-32113579值,并在计算机屏幕上输出。
要求输出结果后再输出一个换行符。

Examples

Input

本题无输入样例

Output

10826229

Solution C

#include<stdio.h>

int main()
{
	int a,b,c,d,e;
	a=123;
	b=123456;
	c=321;
	d=13579;
	e=a*b-c*d;
	printf("%d\n",e);
	return 0;
}

Solution C++

#include<stdio.h>

int main()
{
	int a,b,c,d,e;
	a=123;
	b=123456;
	c=321;
	d=13579;
	e=a*b-c*d;
    printf("%d",e);
	return 0;
}
Time Limit 1 second
Memory Limit 128 MB
Discuss Stats
上一题 下一题