← Back to List

33779번: Back and Forth ↗

Solutions

Python 3
53 B | 53 chars
s = input()
print("beep" if s == s[::-1] else "boop")