Skip to content

Instantly share code, notes, and snippets.

@whatalnk
Created January 13, 2019 08:11
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save whatalnk/f7518dfdf61bfd3a2f7f4471382f9198 to your computer and use it in GitHub Desktop.
MUJIN Programming Challenge A
# https://atcoder.jp/contests/mujin-pc-2018/submissions/3996594
s = gets.chomp
if s[0..4] == "MUJIN"
puts "Yes"
else
puts "No"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment