Given position (x1,y1), velocity (vx,vy), and time t, return final position tuple.
Implement this function:
def final_position(pos: tuple, vel: tuple, time: int) -> tuple:
Write the function only — the arguments are read for you and the return value is printed automatically.
Arguments arrive as one Python literal per line, in this order: pos, vel, time.
Input
(0, 0)
(1, 2)
3
Output
(3, 6)