3 lines
82 B
Python
3 lines
82 B
Python
a, b, c = map(int, input().split())
|
|
print("correct!" if a + b == c else "wrong!")
|
a, b, c = map(int, input().split())
|
|
print("correct!" if a + b == c else "wrong!")
|