Alien Test
Problem Statement:
The government was sure that Mark Zuckerberg was a lizard alien, but they didn’t have any proof. They devised a test to confirm their suspicions. If Mark couldn’t solve a math question, they could be sure that he really isn’t a human.
Mark has to find an array C of length such that each element is the product of the corresponding elements in A and B. Formally, Ci = Ai * Bi (1 ≤ i ≤ N).
Help Mark prove to the government that he actually is a human.
Constraints:
- 1 ≤ N ≤ 105
- 1 ≤ Ai, Bi ≤ 109
Input Format:
- The first line contains a single integer N
- The second line contains N space separated integers denoting the elements of array A
- The third line contains N space separated integers denoting the elements of array B
Output Format:
- Print N space separated integers denoting the elements of array C in a single line
Sample input:
5 1 5 2 4 6 1 8 9 5 6 Sample output:
1 40 18 20 36