PROGRAMMING:A times b
Look, I'm not lying to you - this is a question you can complete in 10 seconds: given two integers with absolute value less than 100 $$a $$and $$B $$, output the value of $$a $$multiplied by $$B $$.
###Input format:
Enter two integers in the first line, $$a $$and $$B $$($- 100, Le a, B, Le 100 $$), separated by spaces.
###Output format:
Output the value of $$a $$multiplied by $$B $$on one line.
###Input example:
```in
-8 13
```
###Output example:
```out
-104
```
answer:If there is no answer, please comment
###Input format:
Enter two integers in the first line, $$a $$and $$B $$($- 100, Le a, B, Le 100 $$), separated by spaces.
###Output format:
Output the value of $$a $$multiplied by $$B $$on one line.
###Input example:
```in
-8 13
```
###Output example:
```out
-104
```
answer:If there is no answer, please comment