6 lines
109 B
Python
6 lines
109 B
Python
s = input().strip()
|
|
if len(s) % 2 != 0 or s[len(s) // 2] != ")":
|
|
print("fix")
|
|
else:
|
|
print("correct")
|