k-tokitoh

2019-04-28

AtCoder Beginner Contest 125 by Ruby

[atcoder.jp](https://atcoder.jp/contests/abc125/tasks/abc125_c)
(1..10).each {|i| print i, " "} # => 1 2 3 4 5 6 7 8 9 10
(10..1).each {|i| print i, " "} # => (出力なし)
10.downto(1) {|i| print i, " "} # => 10 9 8 7 6 5 4 3 2 1
[atcoder.jp](https://atcoder.jp/contests/abc125/tasks/abc125_d)