pbj0812의 코딩 일기

[PYTHON] 수열 더하기 본문

ComputerLanguage_Program/PYTHON

[PYTHON] 수열 더하기

pbj0812 2018. 9. 1. 02:17

import sys

import math


# Auto-generated code below aims at helping you parse

# the standard input according to the problem statement.


n, r = [int(i) for i in input().split()]

l = [i*r for i in range(n)]

print(*l)

Comments