class Main def start main(gets) end def main(s) t = "" s.each_char do |c| if c == "a" t += c else break end end puts t + "a" end end Main.new.start