#164. math1

math1

Background

Description

Given a list of integers, return a list where each integer is added to 1 and the result is multiplied by 10.

Format

Input

Output

Samples

[1 2 3]
[20, 30, 40]
[6 8 6 8 1]
[70, 90, 70, 90, 20]
[10]
[110]

Limitation

1s, 1024KiB for each test case.