Simple expression
Very easy
Execution time limit is 1 second
Runtime memory usage limit is 128 megabytes
Given three real numbers x, y, z (-10^18
≤ x, y, z ≤ 10^18
).Print the value of expression x + y * z.
Input
Contains three lines: the first line contains number x, the second line contains number y, the third line contains number z.
Output
Print the value of expression x + y * z.
Examples
Input #1
Answer #1
Input #2
Answer #2
Submissions 2K
Acceptance rate 29%