Newer
Older
Ruby / tamesi.rb
@NARITA Reo NARITA Reo on 27 Sep 2021 247 bytes 2021-09-27 21:00:48
#!/usr/bin/env ruby
# -*- coding: utf-8 -*-

def bun(z)
  if z=="自動"
    i=5
    while i>0
      sleep 1
      i=i-1
    end
    print("米\n")
  elsif z=="手動"
    gets.chomp
    print("米\n")
  end
end
z=gets.chomp
printf("%s\n",bun(z))