Problem1009--§1 2.6.7A*B问题

1009: §1 2.6.7A*B问题

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

给定两个整数 A 和 B,输出 A * B 的值。保证 A、B 及结果均在 int 范围内。现在请你解决这一问题。
【来源】信奥一本通,第二章,第六节,第7题,Page39。

Input

一行,包含两个整数A,B,中间用单个空格隔开。

Output

一个整数,即 A * B 的值。

Sample 1 Input

1 2

Sample 1 Output

2

Sample 2 Input

-1 2

Sample 2 Output

-2

Sample 3 Input

-5 -2

Sample 3 Output

10

Source/Category