← Back to List
31654번: Adding Trouble ↗
Solutions
Python 3
81 B | 81 chars
a, b, c = map(int, input().split()) print("correct!" if a + b == c else "wrong!")