#165. rightDigit

rightDigit

Background

Description

Given a list of non-negative integers, return an integer list of the rightmost digits. (Note: use %)

Format

Input

Output

Samples

[1 22 93]
[1, 2, 3]
[16 8 886 8 1]
[6, 8, 6, 8, 1]
[10 0]
[0, 0]

Limitation

1s, 1024KiB for each test case.