problem_id stringlengths 6 6 | buggy_code stringlengths 8 526k | fixed_code stringlengths 12 526k | labels listlengths 0 15 ⌀ | buggy_submission_id int64 1 1.54M | fixed_submission_id int64 2 1.54M | user_id stringlengths 10 10 | language stringclasses 8
values |
|---|---|---|---|---|---|---|---|
p02771 |
def main():
A, B, C = map(int, input().split())
if A == B:
if B==C:
print("No")
else:
print('Yes')
else:
if B==C:
print('Yes')
else :
if C==A:
print("No")
else :
print("Yes")
main()
|
def main():
A, B, C = map(int, input().split())
if A == B:
if B==C:
print("No")
else:
print('Yes')
else:
if B==C:
print('Yes')
else :
if C==A:
print("Yes")
else :
print("No")
main()
| [
"literal.string.change",
"call.arguments.change",
"io.output.change"
] | 566,901 | 566,902 | u307418002 | python |
p02771 | import sys;
Nums = input().split(' ');
Nums.sort();
if Nums[0] == Nums[1] and Nums[1] != Nums[2] : print("Yes");
elif Nums[1] == Nums[2] and Nums[0]: print("Yes");
else: print("No"); | import sys;
Nums = input().split(' ');
Nums.sort();
if Nums[0] == Nums[1] and Nums[1] != Nums[2] : print("Yes");
elif Nums[1] == Nums[2] and Nums[1] != Nums[0]: print("Yes");
else: print("No"); | [
"control_flow.branch.if.condition.change"
] | 566,907 | 566,908 | u974558800 | python |
p02771 | A, B, C = input().split()
if A==B==C:
print('No')
else:
if A==B:
if B!=C:
print('Yes')
if A==C:
if C!=B:
print('Yes')
if B==C:
if C!=A:
print('Yes')
else:
print('No') | A, B, C = input().split()
if A==B==C:
print('No')
else:
if A==B:
if B!=C:
print('Yes')
elif A==C:
if C!=B:
print('Yes')
elif B==C:
if C!=A:
print('Yes')
else:
print('No') | [
"control_flow.branch.if.replace.remove",
"control_flow.branch.else_if.replace.add"
] | 566,909 | 566,910 | u450147945 | python |
p02771 | num=list(map(int,input().split()))
print('Yes' if len(num) == len(set(num) + 1) else 'No') | num=list(map(int,input().split()))
print('Yes' if len(num) == len(set(num))+1 else 'No') | [
"call.arguments.change"
] | 566,926 | 566,927 | u243699903 | python |
p02771 | *l = map(int, input().split())
if len(set(l)) == 2:
print('Yes')
else:
print('No') | l = list(map(int, input().split()))
if len(set(l)) == 2:
print('Yes')
else:
print('No')
| [
"call.add",
"call.arguments.change"
] | 566,928 | 566,929 | u962309487 | python |
p02771 | a,b,c = input().split()
d = 0
if a == b:
if a != c:
d +=1
if a == c:
if b != c:
d +=1
if c == b:
if a != c:
d +=1
if d>0:
print("YES")
else:
print("NO") | a,b,c = input().split()
d = 0
if a == b:
if a != c:
d +=1
if a == c:
if b != c:
d +=1
if c == b:
if a != c:
d +=1
if d>0:
print("Yes")
else:
print("No") | [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 566,934 | 566,935 | u156778434 | python |
p02771 | A, B, C = map(int, input().split())
if A == B and A == C:
print("Yes")
elif A == B or A == C or B == C:
print("Yes")
else:
print("No")
| A, B, C = map(int, input().split())
if A == B and A == C:
print("No")
elif A == B or A == C or B == C:
print("Yes")
else:
print("No")
| [
"literal.string.change",
"call.arguments.change",
"io.output.change"
] | 566,945 | 566,946 | u793134951 | python |
p02771 | L = list(map(int,input().split()))
L = set(L)
if len(L) == 2:
print('YES')
else:
print('NO')
| L = list(map(int,input().split()))
L = set(L)
if len(L) == 2:
print('Yes')
else:
print('No')
| [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 566,968 | 566,969 | u106494511 | python |
p02771 | a=list(map(int,input().split()))
if a[0]==a[1]==a[2] or a[0]!=a[1]!=a[2]:
print("No")
else:
print("Yes") | a=list(map(int,input().split()))
a.sort()
if a[0]==a[1]==a[2] or a[0]!=a[1]!=a[2]:
print("No")
else:
print("Yes") | [
"call.add"
] | 566,989 | 566,990 | u041046014 | python |
p02771 | a=list(map(int,input().split()))
print(a)
if a[0]==a[1]==a[2] or a[0]!=a[1]!=a[2]:
print("No")
else:
print("Yes")
| a=list(map(int,input().split()))
a.sort()
if a[0]==a[1]==a[2] or a[0]!=a[1]!=a[2]:
print("No")
else:
print("Yes") | [
"call.remove",
"call.add"
] | 566,991 | 566,990 | u041046014 | python |
p02771 | a,b,c=map(int, input.split())
count = 0
if a==b:
count = count + 1
if b==c:
count = count + 1
if c==a:
count = count + 1
if count == 1:
print("Yes")
else:
print("No") | a,b,c = map(int, input().split())
count = 0
if a==b:
count = count + 1
if b==c:
count = count + 1
if c==a:
count = count + 1
if count == 1:
print("Yes")
else:
print("No") | [
"call.add"
] | 566,996 | 566,997 | u723792785 | python |
p02771 | A, B, C = map(int, input().split())
if (len(set({A, B, C})) == 2):
print("YES")
else:
print("NO") | A, B, C = map(int, input().split())
if (len(set({A, B, C})) == 2):
print("Yes")
else:
print("No") | [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 566,998 | 566,999 | u148425972 | python |
p02771 | a,b,c = map(int,input().split())
if (a==b and a!=b) or (b==c and b!=a) or (c==a and c!=b):
print('Yes')
else:
print('No') | a,b,c = map(int,input().split())
if (a==b and a!=c) or (b==c and b!=a) or (c==a and c!=b):
print('Yes')
else:
print('No') | [
"identifier.change",
"control_flow.branch.if.condition.change"
] | 567,000 | 567,001 | u714378447 | python |
p02771 | def contest(val):
a_str, b_str, c_str = val.split(' ')
a = int(a_str)
b = int(b_str)
c = int(c_str)
if a == b & b == c:
return 'no'
elif a == b:
return 'yes'
elif b == c:
return 'yes'
elif a == c:
return 'yes'
else:
return 'no'
if __name__ ... | def contest(val):
a_str, b_str, c_str = val.split(' ')
a = int(a_str)
b = int(b_str)
c = int(c_str)
if a == b & b == c:
return 'No'
elif a == b:
return 'Yes'
elif b == c:
return 'Yes'
elif a == c:
return 'Yes'
else:
return 'No'
if __name__ ... | [
"literal.string.change",
"literal.string.case.change",
"function.return_value.change"
] | 567,020 | 567,021 | u376270730 | python |
p02771 | a,b,c = list(map(int, input().strip().split()))
if a==b==c :
print('No')
elif a==b or a==c:
print('Yes')
else:
print('No') | a,b,c = list(map(int, input().strip().split()))
if a==b==c :
print('No')
elif a==b or a==c or b==c:
print('Yes')
else:
print('No') | [
"control_flow.branch.if.condition.change"
] | 567,028 | 567,029 | u395894569 | python |
p02771 | a, b, c = map(int, input().split())
l = {a, b, c}
if (len(l) != 1) :
print('Yes')
else:
print('No') | a, b, c = map(int, input().split())
l = {a, b, c}
if (len(l) == 2) :
print('Yes')
else:
print('No') | [] | 567,030 | 567,031 | u478132434 | python |
p02771 | s = list(map(int, input().split()))
if len(list(set(s))) == 1 or len(list(set(s))) == 3:
print('NO')
else:
print('Yes') | s = list(map(int, input().split()))
if len(list(set(s))) == 1 or len(list(set(s))) == 3:
print('No')
else:
print('Yes') | [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 567,040 | 567,041 | u245960901 | python |
p02771 | A = list(map(int, input().split(" ")))
count=0
if A[0]==A[1]:
count += 1
if A[0]==A[2]:
count+=1
if A[1]==A[2]:
count += 1
if count == 1:
print("YES")
else:
print("NO") | A = list(map(int, input().split(" ")))
count=0
if A[0]==A[1]:
count += 1
if A[0]==A[2]:
count+=1
if A[1]==A[2]:
count += 1
if count == 1:
print("Yes")
else:
print("No") | [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 567,070 | 567,071 | u941644149 | python |
p02771 | nums = list(map(int, input().split()))
print(nums)
if len(set(nums)) == 2:
print("Yes")
else:
print("No")
| nums = list(map(int, input().split()))
if len(set(nums)) == 2:
print("Yes")
else:
print("No")
| [
"call.remove"
] | 567,074 | 567,075 | u199830845 | python |
p02771 | a = list(map(int, input().split()))
a.sort()
if a[0] == a[2] or a[0] < a[1] < a[2]:
print('Yes')
else:
print('No') | a = list(map(int, input().split()))
a.sort()
if a[0] == a[2] or a[0] < a[1] < a[2]:
print('No')
else:
print('Yes') | [
"literal.string.change",
"call.arguments.change",
"io.output.change"
] | 567,095 | 567,096 | u824237520 | python |
p02771 | input_line = input().split(' ')
num=set(input_line)
if num==2:
print('Yes')
else:
print('No') | input_line = input().split(' ')
num=set(input_line)
if len(num)==2:
print('Yes')
else:
print('No') | [
"control_flow.branch.if.condition.change",
"call.add"
] | 567,105 | 567,106 | u295792161 | python |
p02771 | number = input().split()
newNumber = set(number)
if(len(newNumber) == len(number)):
print("No")
else:
print("Yes") | number = input().split()
newNumber = set(number)
if(len(newNumber) + 1 == len(number)):
print("Yes")
else:
print("No") | [
"control_flow.branch.if.condition.change",
"literal.string.change",
"call.arguments.change",
"io.output.change"
] | 567,147 | 567,148 | u346266986 | python |
p02771 | a,b,c=map(int,input().split())
same=0
if a==b:
same=same+1
elif b==c:
same=same+1
elif c==a:
same=same+1
if same==1:
print('Yes')
else:
print('No') | a,b,c=map(int,input().split())
same=0
if a==b:
same=same+1
if b==c:
same=same+1
if c==a:
same=same+1
if same==1:
print('Yes')
else:
print('No') | [
"control_flow.branch.if.replace.add",
"control_flow.branch.else_if.replace.remove"
] | 567,156 | 567,157 | u283683979 | python |
p02771 | a,b,c=map(int,input().split())
if a==b:
if a==c:
print("No")
else:
print("Yes")
elif a==c:
print("Yes")
elif b==c:
prunt("Yes")
else:
print("No")
| a,b,c=map(int,input().split())
if a==b:
if a==c:
print("No")
else:
print("Yes")
elif a==c:
print("Yes")
elif b==c:
print("Yes")
else:
print("No")
| [
"identifier.change",
"call.function.change"
] | 567,166 | 567,167 | u706433263 | python |
p02771 | a,b,c=map(int.input().split())
if a==b:
if a==c:
print("No")
else:
print("Yes")
elif a==c:
print("Yes")
elif b==c:
prunt("Yes")
else:
print("No") | a,b,c=map(int,input().split())
if a==b:
if a==c:
print("No")
else:
print("Yes")
elif a==c:
print("Yes")
elif b==c:
print("Yes")
else:
print("No")
| [
"misc.typo",
"assignment.value.change",
"call.arguments.change",
"identifier.change",
"call.function.change"
] | 567,168 | 567,167 | u706433263 | python |
p02771 | a,b,c=input().split()
if (a==b and b==c) or (a!=b and b!=c):
print("No")
else:
print("Yes") | a,b,c=input().split()
if (a==b and b==c) or (a!=b and b!=c and c!=a):
print("No")
else:
print("Yes")
| [
"control_flow.branch.if.condition.change"
] | 567,179 | 567,180 | u007808656 | python |
p02771 | def main():
num = list(map(int,input().split()))
if num.count(num[0]) == 2 or num.count(num[1]) == 2:
print('YES')
return
print('NO')
main()
| def main():
num = list(map(int,input().split()))
if num.count(num[0]) == 2 or num.count(num[1]) == 2:
print('Yes')
return
print('No')
main()
| [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 567,181 | 567,182 | u041401317 | python |
p02771 | A, B, C = map(int, input().split())
if A == B or A == C or B == C:
if A == B and B == C:
print("NO")
else:
print("Yes")
else:
print("NO") | A, B, C = map(int, input().split())
if A == B or A == C or B == C:
if A == B and B == C:
print("No")
else:
print("Yes")
else:
print("No") | [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 567,185 | 567,186 | u433175605 | python |
p02771 | A,B,C=map(int,input().split())
if A==B & B==C:
print("no")
elif A!=B & B!=C & C!=A:
print("no")
else:
print("yes")
| A,B,C=map(int,input().split())
if A==B & B==C:
print("No")
elif A!=B & B!=C & C!=A:
print("No")
else:
print("Yes")
| [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 567,205 | 567,206 | u852124489 | python |
p02771 | A, B, C = int(input().split())
if (A == B) or (B == C) or (C == A):
if (A == B) and (B == C):
print("No")
else:
print("Yes")
else:
print("No")
| A, B, C = map(int, input().split())
if (A == B) or (B == C) or (C == A):
if (A == B) and (B == C):
print("No")
else:
print("Yes")
else:
print("No") | [
"assignment.value.change",
"identifier.change",
"call.function.change",
"call.arguments.add"
] | 567,209 | 567,211 | u653175574 | python |
p02771 | nums = list(map(int, input().split()))
if nums.count(nums[0]) == 2 or nums.count(nums[1] == 2) or nums.count(nums[2]) == 2:
print("Yes")
else:
print("No") | nums = list(map(int, input().split()))
if nums.count(nums[0]) == 2 or nums.count(nums[1]) == 2 or nums.count(nums[2]) == 2:
print("Yes")
else:
print("No") | [
"control_flow.branch.if.condition.change"
] | 567,230 | 567,231 | u202400119 | python |
p02771 | a,b,c = (int(x) for x in input().split())
if a==b:
if a!=c:
res = "Yes"
else:
res = "No"
if c==b:
if a!=c:
res = "Yes"
else:
res = "No"
if a==c:
if a!=b:
res = "Yes"
else:
res = "No"
print(res) | a,b,c = (int(x) for x in input().split())
res = "No"
if a==b:
if a!=c:
res = "Yes"
else:
res = "No"
if c==b:
if a!=c:
res = "Yes"
else:
res = "No"
if a==c:
if a!=b:
res = "Yes"
else:
res = "No"
print(res) | [
"assignment.add"
] | 567,234 | 567,235 | u917363866 | python |
p02771 | a = list(map(int, input().split()))
b = set(a)
if len(b) == 2:
print('YES')
else:
print('NO')
| a = list(map(int, input().split()))
b = set(a)
if len(b) == 2:
print('Yes')
else:
print('No')
| [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 567,248 | 567,249 | u792278636 | python |
p02771 |
def main():
s = input().split()
if len(s) == set(s) or len(set(s)) == 1:
print("No")
else:
print("Yes")
main() |
def main():
s = input().split()
if len(s) == len(set(s)) or len(set(s)) == 1:
print("No")
else:
print("Yes")
main() | [
"control_flow.branch.if.condition.change",
"call.add"
] | 567,251 | 567,252 | u560867850 | python |
p02771 | a, b, c = [int(x) for x in input().split()]
if (a == b and b != c) or (b == c and c != a) or (c == a and a != b):
print("yes")
else:
print("no") | a, b, c = [int(x) for x in input().split()]
if (a == b and b != c) or (b == c and c != a) or (c == a and a != b):
print("Yes")
else:
print("No")
| [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 567,259 | 567,260 | u197955752 | python |
p02771 | vA, B, C = map(int, input().split())
if A == B and B != C:
print("Yes")
elif B == C and A != B:
print("Yes")
elif A == C and A != B:
print("Yes")
else:
pirnt("No") | A, B, C = map(int, input().split())
if A == B and B != C:
print("Yes")
elif B == C and A != B:
print("Yes")
elif A == C and A != B:
print("Yes")
else:
print("No") | [
"assignment.variable.change",
"identifier.change",
"call.function.change"
] | 567,265 | 567,266 | u257084573 | python |
p02771 | number = list(map(int,input().split()))
number_set = set(number)
print('No') if len(number_set) == 1 else print('Yes') | number = list(map(int,input().split()))
number_set = set(number)
print('Yes') if len(number_set) == 2 else print('No') | [
"literal.string.change",
"call.arguments.change",
"io.output.change",
"literal.number.integer.change"
] | 567,267 | 567,268 | u114366889 | python |
p02771 | list_num = input().split(' ')
if len(set(list_num))==2:
print('YES')
else:
print('NO') | list_num = input().split(' ')
if len(set(list_num))==2:
print('Yes')
else:
print('No') | [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 567,269 | 567,270 | u012955130 | python |
p02771 | a,b,c = map(int,input().split())
count=0
if(a==b):
count+=1
if(b==c):
count+=1
if(c==a):
count+=1
if(count==1):
print('YES')
else:
print('NO')
| a,b,c = map(int,input().split())
count=0
if(a==b):
count+=1
if(b==c):
count+=1
if(c==a):
count+=1
if(count==1):
print('Yes')
else:
print('No')
| [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 567,271 | 567,272 | u598924163 | python |
p02771 | A,B,C=map(int,input().split())
if A==B and B!=C:
print("Yes")
if A==C and A!=B:
print("Yes")
if B==C and B!=A:
print("Yes")
if A==B==C:
print("No")
if A!=B and B!=C and C!=A:
print("NO") | A,B,C=map(int,input().split())
if A==B and B!=C:
print("Yes")
if A==C and A!=B:
print("Yes")
if B==C and B!=A:
print("Yes")
if A==B==C:
print("No")
if A!=B and B!=C and C!=A:
print("No") | [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 567,279 | 567,280 | u627600101 | python |
p02771 | i=input().split()
a=i[0]
b=i[1]
c=i[2]
if((a==b and b!=c) or (b==c and c!=a) or (a==c and c!=b)):
print("YES")
else:
print("NO") | i=input().split()
a=i[0]
b=i[1]
c=i[2]
if((a==b and b!=c) or (b==c and c!=a) or (a==c and c!=b)):
print("Yes")
else:
print("No") | [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 567,283 | 567,284 | u472279714 | python |
p02771 | A,B,C= map(int,input().split())
if A==B:
if A != C:
print("Yes")
else:
print("No")
else:
if A == C:
print("Yes")
else:
print("No")
if B == C:
print("Yes")
else:
print("No") | A,B,C= map(int,input().split())
if A==B:
if A != C:
print("Yes")
else:
print("No")
else:
if A == C:
print("Yes")
else:
if B == C:
print("Yes")
else:
print("No") | [
"call.remove"
] | 567,293 | 567,294 | u513900925 | python |
p02771 | a,b,c=map(int,input().split())
if (a==b or b==c or c==1)and not a==b==c:
print("Yes")
else:
print("No") | a,b,c=map(int,input().split())
if (a==b or b==c or c==a)and not a==b==c:
print("Yes")
else:
print("No") | [
"identifier.replace.add",
"literal.replace.remove",
"control_flow.branch.if.condition.change"
] | 567,297 | 567,298 | u211706121 | python |
p02771 | l=list(map(int,input().split()))
if l[0]==l[1] and l[1]!=l[2]:
print('Yes')
elif l[1]==l[2] and l[1]!=l[0]:
print('Yes')
else:
print('No')
| l=list(map(int,input().split()))
l.sort()
if l[0]==l[1] and l[1]!=l[2]:
print('Yes')
elif l[1]==l[2] and l[1]!=l[0]:
print('Yes')
else:
print('No')
| [
"call.add"
] | 567,317 | 567,318 | u652569315 | python |
p02771 | x = list(map(int, input().split(' ')))
if len(set(x)) == 3:
print('Yes')
else:
print('No') | x = list(map(int, input().split(' ')))
if len(set(x)) == 2:
print('Yes')
else:
print('No') | [
"literal.number.integer.change",
"control_flow.branch.if.condition.change"
] | 567,321 | 567,322 | u661347997 | python |
p02771 | a, b, c = map(int, input().split())
if a == b and a == c:
print("NO")
elif a != b and a != c and b != c:
print("NO")
else:
print("YES") | a, b, c = map(int, input().split())
if a == b and a == c:
print("No")
elif a != b and a != c and b != c:
print("No")
else:
print("Yes") | [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 567,333 | 567,334 | u346424924 | python |
p02771 | s=list(map(int,input().split()))
if s[0] == s[1] == s[2]:
print("No1")
elif s[0] != s[1] != s[2] != s[0]:
print("No2")
else:
print("Yes") | s=list(map(int,input().split()))
if s[0] == s[1] == s[2]:
print("No")
elif s[0] != s[1] != s[2] != s[0]:
print("No")
else:
print("Yes")
| [
"literal.string.change",
"call.arguments.change",
"io.output.change"
] | 567,339 | 567,340 | u350578302 | python |
p02771 | A,B,C = map(int, input().split())
if A==B & B==C & C==A:
print('NO')
elif A!=B & B!=C & C!=A:
print('NO')
else:
print('YES')
| A,B,C = map(int, input().split())
if A==B & B==C & C==A:
print('No')
elif A!=B & B!=C & C!=A:
print('No')
else:
print('Yes')
| [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 567,355 | 567,356 | u851319680 | python |
p02771 | case = int(input())
A, B, C =[int(x) for x in case.split(' ')]
if (A == B and A != C) or(B == C and A != C) or (A == C and A != C):
print('Yes')
else:
print('No') |
case = input()
A, B, C =[int(x) for x in case.split(' ')]
if (A == B and A != C) or(B == C and A != C) or (A == C and A != B):
print('Yes')
else:
print('No') | [
"call.remove",
"call.arguments.change",
"identifier.change",
"control_flow.branch.if.condition.change"
] | 567,357 | 567,358 | u465067725 | python |
p02771 | A, B, C = map(int, input().split())
if A == B:
if C == A or C == B:
print('No')
else:
print('Yes')
if B == C:
if A == B or A == C:
print('No')
else:
print('Yes')
if C == A:
if B == A or B == C:
print('No')
else:
print('Yes')
else:
print('No')
| A, B, C = map(int, input().split())
if A == B:
if C == A or C == B:
print('No')
else:
print('Yes')
elif B == C:
if A == B or A == C:
print('No')
else:
print('Yes')
elif C == A:
if B == A or B == C:
print('No')
else:
print('Yes')
else:
print('N... | [
"control_flow.branch.if.replace.remove",
"control_flow.branch.else_if.replace.add"
] | 567,359 | 567,360 | u697101155 | python |
p02771 | def resolve():
A, B, C = map(int, input().split())
if A == B and B == C:
print('No')
return
if A == B or B == C:
print('Yes')
return
print('No')
resolve()
| def resolve():
A, B, C = map(int, input().split())
if A == B and B == C:
print('No')
return
if A == B or B == C or A == C:
print('Yes')
return
print('No')
resolve() | [
"control_flow.branch.if.condition.change"
] | 567,363 | 567,364 | u586662847 | python |
p02771 | a, b, c = map(int, input().split())
r = 0
r += 1 if a == b else 0
r += 1 if a == c else 0
r += 1 if b == c else 0
if r == 1:
print('Yse')
else:
print('No') | a, b, c = map(int, input().split())
r = 0
r += 1 if a == b else 0
r += 1 if a == c else 0
r += 1 if b == c else 0
if r == 1:
print('Yes')
else:
print('No')
| [
"literal.string.change",
"call.arguments.change",
"io.output.change"
] | 567,367 | 567,368 | u661902454 | python |
p02771 | a, b, c = map(int, input().split())
r = 0
r += 1 if a == b else 0
r += 1 if a == c else 0
r += 1 if b == c else 0
if r == 1:
print('Yse')
else:
print('No')
| a, b, c = map(int, input().split())
r = 0
r += 1 if a == b else 0
r += 1 if a == c else 0
r += 1 if b == c else 0
if r == 1:
print('Yes')
else:
print('No')
| [
"literal.string.change",
"call.arguments.change",
"io.output.change"
] | 567,369 | 567,368 | u661902454 | python |
p02771 | LIST = sorted(input().split(),reverse=True)
flag = 0
if LIST[0] == LIST[1]:
flag += 1
if LIST[1] == LIST[2]:
flag += 1
if flag == 1:
print("YES")
else:
print("NO") | LIST = sorted(input().split(),reverse=True)
flag = 0
if LIST[0] == LIST[1]:
flag += 1
if LIST[1] == LIST[2]:
flag += 1
if flag == 1:
print("Yes")
else:
print("No") | [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 567,378 | 567,379 | u736848749 | python |
p02771 | data=list(map(int,input().split()))
data.sort()
print(data)
ans="No"
if data[0]==data[1]:
if data[1]==data[2]:
ans="No"
elif data[1]!=data[2]:
ans='Yes'
elif data[0]!=data[1]:
if data[1]==data[2]:
ans="Yes"
print(ans) | data=list(map(int,input().split()))
data.sort()
ans="No"
if data[0]==data[1]:
if data[1]==data[2]:
ans="No"
elif data[1]!=data[2]:
ans='Yes'
elif data[0]!=data[1]:
if data[1]==data[2]:
ans="Yes"
print(ans) | [
"call.remove"
] | 567,382 | 567,383 | u872184182 | python |
p02771 | a,b,c=input().split()
ans="Yes"
if a!=b and b!=c and c!=a:
ans="No"
if a==b==c:
ans="No" | a,b,c=input().split()
ans="Yes"
if a!=b and b!=c and c!=a:
ans="No"
if a==b==c:
ans="No"
print(ans) | [
"call.add"
] | 567,390 | 567,391 | u507113442 | python |
p02771 | def equ(a,b):
return 1*(a==b)
a,b,c = map(input().split())
ans = equ(a,b)+equ(b,c) +equ(c,a)
print('Yes' if ans ==1 else 'No')
| def equ(a,b):
return 1*(a==b)
a,b,c = map(int,input().split())
ans = equ(a,b)+equ(b,c) +equ(c,a)
print('Yes' if ans ==1 else 'No') | [
"call.arguments.add"
] | 567,410 | 567,411 | u044459372 | python |
p02771 | a = list(map(int, input().split()))
A = a[0]
B = a[1]
C = a[2]
if (A == B == C) or (A is not B and B is not C) :
print("No")
else:
print("Yes") | a = list(map(int, input().split()))
A = a[0]
B = a[1]
C = a[2]
if (A == B == C) or (A is not B and B is not C and C is not A) :
print("No")
else:
print("Yes") | [
"control_flow.branch.if.condition.change"
] | 567,422 | 567,423 | u294376483 | python |
p02771 | i = list(map(int, input().split()))
A = i[0]
B = i[1]
C = i[2]
if A == B != C :
print('Yes')
elif A != B == C :
print('Yes')
elif A != C == B :
print('Yes')
else :
print('No') | i = list(map(int, input().split()))
A = i[0]
B = i[1]
C = i[2]
if A == B != C :
print('Yes')
elif A != B == C :
print('Yes')
elif A == C != B :
print('Yes')
else :
print('No') | [
"control_flow.branch.if.condition.change"
] | 567,442 | 567,443 | u334527558 | python |
p02771 | a = list(map(int, input().split()))
a.sort()
count = 0
for i in range(len(a)-1):
if a[i] == a[i+1]:
count += 1
if count == 2:
print("Yes")
else:
print("No") | a = list(map(int, input().split()))
a.sort()
count = 0
for i in range(len(a)-1):
if a[i] == a[i+1]:
count += 1
if count == 1:
print("Yes")
else:
print("No")
| [
"literal.number.integer.change",
"control_flow.branch.if.condition.change"
] | 567,450 | 567,451 | u527616458 | python |
p02771 | if len(set(map(int, inputs[0].split()))) == 2:
print('Yes')
else:
print('No') | if len(set(map(int, input().split()))) == 2:
print('Yes')
else:
print('No') | [
"control_flow.branch.if.condition.change"
] | 567,467 | 567,468 | u417365712 | python |
p02771 | A, B, C = input().split()
if A == B and A == C:
print('No')
elif A == B or A == C:
print ('Yes')
else:
print('No') | A, B, C = input().split()
if A == B and A == C:
print('No')
elif A == B or A == C or B == C:
print ('Yes')
else:
print('No') | [
"control_flow.branch.if.condition.change"
] | 567,482 | 567,483 | u796649186 | python |
p02771 | A = map(int,input().split())
if len(set(A)) == 2:
print("yes")
else:
print("No") | A = map(int,input().split())
if len(set(A) ) == 2:
print("Yes")
else:
print("No") | [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 567,490 | 567,491 | u060012100 | python |
p02771 | A = map(int, input().split())
if len(set(A)) == 2:
print("yes")
else:
print("No") | A = map(int,input().split())
if len(set(A) ) == 2:
print("Yes")
else:
print("No") | [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 567,493 | 567,491 | u060012100 | python |
p02771 | A = map(int, input().split())
if len(set(A) == 2):
print("yes")
else:
print("No") | A = map(int,input().split())
if len(set(A) ) == 2:
print("Yes")
else:
print("No") | [
"control_flow.branch.if.condition.change",
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 567,494 | 567,491 | u060012100 | python |
p02771 | #!/usr/bin/env python3
import sys
YES = "Yes" # type: str
NO = "No" # type: str
def solve(A: int, B: int, C: int):
if A == B and A != C:
print('Yes')
elif A == C and A != B:
print('Yes')
elif B == C and B != C:
print('Yes')
else:
print('No')
return
# Generated ... | #!/usr/bin/env python3
import sys
YES = "Yes" # type: str
NO = "No" # type: str
def solve(A: int, B: int, C: int):
if A == B and A != C:
print('Yes')
elif A == C and A != B:
print('Yes')
elif B == C and B != A:
print('Yes')
else:
print('No')
return
# Generated ... | [
"identifier.change",
"control_flow.branch.if.condition.change"
] | 567,499 | 567,500 | u444081235 | python |
p02771 | a,b,c = map(int,input().split())
if a==b and a!=c:
print('Yes')
elif a==c and a!=b:
print('Yes')
elif b==c and b!=c:
print('Yes')
else:
print('No') | a,b,c = map(int,input().split())
if a==b and a!=c:
print('Yes')
elif a==c and a!=b:
print('Yes')
elif b==c and b!=a:
print('Yes')
else:
print('No') | [
"identifier.change",
"control_flow.branch.if.condition.change"
] | 567,503 | 567,504 | u546338822 | python |
p02771 | l = input().split()
if (len(set(l)) == 3):
print('No')
else:
print('Yes') | l = input().split()
if (len(set(l)) == 2):
print('Yes')
else:
print('No') | [
"literal.number.integer.change",
"control_flow.branch.if.condition.change",
"call.remove",
"call.add"
] | 567,513 | 567,514 | u889604426 | python |
p02771 | A,B,C=map(int,input().split())
ans='NO'
if A==B and A!=C: ans='YES'
if A==C and A!=B: ans='YES'
if B==C and B!=A: ans='YES'
print(ans) | A,B,C=map(int,input().split())
ans='No'
if A==B and A!=C: ans='Yes'
if A==C and A!=B: ans='Yes'
if B==C and B!=A: ans='Yes'
print(ans) | [
"literal.string.change",
"literal.string.case.change",
"assignment.value.change"
] | 567,517 | 567,518 | u159723084 | python |
p02771 | list = list(map(int, input().split()))
set = set(list)
if len(set) == 2:
print("YES")
else:
print("NO")
| list = list(map(int, input().split()))
set = set(list)
if len(set) == 2:
print("Yes")
else:
print("No")
| [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 567,521 | 567,522 | u712284046 | python |
p02771 | def main():
a,b,c = sorted([x for x in input().split()])
if (a==b and b != c) or (b==c and c!=a) or (c==a and a!=b):
print("YES")
else:
print("NO")
if __name__ == '__main__':
main() | def main():
a,b,c = sorted([x for x in input().split()])
if (a==b and b != c) or (b==c and c!=a) or (c==a and a!=b):
print("Yes")
else:
print("No")
if __name__ == '__main__':
main() | [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 567,527 | 567,528 | u185034753 | python |
p02771 | A=list(map(int, input().split()))
if len(set(A))==2:
print('YES')
else:
print('NO') | A=list(map(int, input().split()))
if len(set(A))==2:
print('Yes')
else:
print('No') | [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 567,529 | 567,530 | u346207191 | python |
p02771 | a,b,c = map(int,input().split)
P = set([a,b,c])
if len(P) == 2:
print('Yes')
else:
print('No') | a,b,c = map(int,input().split())
P = set([a,b,c])
if len(P) == 2:
print('Yes')
else:
print('No') | [
"call.add"
] | 567,552 | 567,553 | u092646083 | python |
p02771 | a=list(map(int,input().split()))
b=set(a)
print('No' if len(a)-len(b)==1 else 'Yes')
| a=list(map(int,input().split()))
b=set(a)
print('Yes' if len(a)-len(b)==1 else 'No')
| [
"literal.string.change",
"call.arguments.change",
"io.output.change"
] | 567,562 | 567,563 | u464205401 | python |
p02771 | a,b,c=input()
if a==b and a!=c:
print("Yes")
elif a==c and a!=b:
print("Yes")
elif b==c and a!=b:
print("Yes")
else:
print("No") | a,b,c=input().split()
if a==b and a!=c:
print("Yes")
elif a==c and a!=b:
print("Yes")
elif b==c and a!=b:
print("Yes")
else:
print("No") | [
"call.add"
] | 567,568 | 567,569 | u025241948 | python |
p02771 | A, B, C = map(int, input().split())
if A == B and B != C:
print("Yes")
elif A != B and B == C:
print("YEs")
elif A == C and B != C:
print("Yes")
else:
print("No") | A, B, C = map(int, input().split())
if A == B and B != C:
print("Yes")
elif A != B and B == C:
print("Yes")
elif A == C and B != C:
print("Yes")
else:
print("No") | [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 567,598 | 567,599 | u870559097 | python |
p02771 | a,b,c=sorted(map(int,input().split()))
if a==b and a!=c:
print('Yes')
elif a==c and a!=b:
print('Yes')
else:
print('No') | a,b,c=sorted(map(int,input().split()))
if a==b and b!=c:
print('Yes')
elif b==c and a!=b:
print('Yes')
else:
print('No') | [
"identifier.change",
"control_flow.branch.if.condition.change"
] | 567,630 | 567,631 | u553070631 | python |
p02771 | A,B,C = list(map(int,input().split()))
if A==B and B!=C or A==C and B!=C or A==C and B!=C:
print("Yes")
else:
print("No") | A,B,C = list(map(int,input().split()))
if A==B and B!=C or A==C and B!=C or B==C and A!=C:
print("Yes")
else:
print("No") | [
"identifier.change",
"control_flow.branch.if.condition.change"
] | 567,650 | 567,651 | u952669998 | python |
p02771 | a,b,c=map(int,input().split())
if a == b or a == c or b == c:
if a == b and b == c:
print("No")
else:
print("Yes")
else:
print("Yes") | a,b,c=map(int,input().split())
if a == b or a == c or b == c:
if a == b and b == c:
print("No")
else:
print("Yes")
else:
print("No")
| [
"literal.string.change",
"call.arguments.change",
"io.output.change"
] | 567,652 | 567,653 | u329407311 | python |
p02771 | a,b,c = map(int, input().split(' '))
if a == b == c or (a != b and b!=c and a!=c):
print('Yes')
else:
print('No') | a,b,c = map(int, input().split(' '))
if a == b == c or (a != b and b!=c and a!=c):
print('No')
else:
print('Yes') | [
"literal.string.change",
"call.arguments.change",
"io.output.change"
] | 567,661 | 567,662 | u385825353 | python |
p02771 | A , B, C = map(int, input().split())
L = [A,B,C]
if not len(set(L)) == 2:
print("Yes")
else:
print("No") | A , B, C = map(int, input().split())
L = [A,B,C]
if len(set(L)) == 2:
print("Yes")
else:
print("No") | [
"control_flow.branch.if.condition.change"
] | 567,665 | 567,666 | u135360096 | python |
p02771 | A , B, C = map(int, input().split())
L = [A,B,C]
if not len(set(L)) == len(L):
print("Yes")
else:
print("No") | A , B, C = map(int, input().split())
L = [A,B,C]
if len(set(L)) == 2:
print("Yes")
else:
print("No") | [
"control_flow.branch.if.condition.change",
"identifier.replace.remove",
"literal.replace.add",
"call.arguments.change"
] | 567,667 | 567,666 | u135360096 | python |
p02771 | def main():
a, b, c = map(int, input().split())
if a == b and c != a or a == c and b != a or b == c and c != b:
print('Yes')
else:
print('No')
if __name__ == '__main__':
main()
| def main():
a, b, c = map(int, input().split())
if a == b and c != a or a == c and b != a or b == c and a != b:
print('Yes')
else:
print('No')
if __name__ == '__main__':
main()
| [
"identifier.change",
"control_flow.branch.if.condition.change"
] | 567,686 | 567,687 | u846694620 | python |
p02771 | a,b,c=map(int,input().split())
if a==b and b!=c:
print("Yes")
elif a==c and b!=c:
print("Yes")
elif c==b and a!=c:
print("Yes")
else:
print("NO") | a,b,c=map(int,input().split())
if a==b and b!=c:
print("Yes")
elif a==c and b!=c:
print("Yes")
elif c==b and a!=c:
print("Yes")
else:
print("No") | [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 567,712 | 567,713 | u109133010 | python |
p02771 | A, B, C = map(int, input().split())
print('Yes' if len(set([A, B, C])) != 1 else 'No') | A, B, C = map(int, input().split())
print('Yes' if len(set([A, B, C])) == 2 else 'No') | [] | 567,722 | 567,723 | u497046426 | python |
p02771 | a,b,c=map(int,input().split())
if a==b:
if b==c:
ans="No"
else:
ans="Yes"
if b==c:
if c==a:
ans="No"
else:
ans="Yes"
if c==a:
if a==b:
ans="No"
else:
ans="Yes"
print(ans) | a,b,c=map(int,input().split())
ans="No"
if a==b:
if b==c:
ans="No"
else:
ans="Yes"
if b==c:
if c==a:
ans="No"
else:
ans="Yes"
if c==a:
if a==b:
ans="No"
else:
ans="Yes"
print(ans) | [
"assignment.add"
] | 567,769 | 567,770 | u404629709 | python |
p02771 | import collections
a = input().split()
c = list(collections.Counter(a).values())
b = 0
print(c)
for k in c:
b += 1
if k == 2:
print("Yes")
break
elif b == 3:
print("No")
elif k == 3:
print("No") | import collections
a = input().split()
c = list(collections.Counter(a).values())
b = 0
for k in c:
b += 1
if k == 2:
print("Yes")
break
elif b == 3:
print("No")
elif k == 3:
print("No") | [
"call.remove"
] | 567,773 | 567,774 | u614628638 | python |
p02771 | import collections
a = input().split()
c = list(collections.Counter(a).values())
b = 0
print(c)
for k in c:
b += 1
if k == 2:
print("Yes")
break
elif b == 3:
print("No")
elif c == 3:
print("No") | import collections
a = input().split()
c = list(collections.Counter(a).values())
b = 0
for k in c:
b += 1
if k == 2:
print("Yes")
break
elif b == 3:
print("No")
elif k == 3:
print("No") | [
"call.remove",
"identifier.change",
"control_flow.branch.if.condition.change"
] | 567,775 | 567,774 | u614628638 | python |
p02771 | import collections
a = input().split()
c = list(collections.Counter(a).values())
b = 0
print(c)
for k in c:
b += 1
if k == 2:
print("Yes")
break
elif b == 3:
print("No")
elif c == c:
print("No") | import collections
a = input().split()
c = list(collections.Counter(a).values())
b = 0
for k in c:
b += 1
if k == 2:
print("Yes")
break
elif b == 3:
print("No")
elif k == 3:
print("No") | [
"call.remove",
"identifier.change",
"control_flow.branch.if.condition.change",
"identifier.replace.remove",
"literal.replace.add"
] | 567,776 | 567,774 | u614628638 | python |
p02771 | lis = list(input().split())
a=lis.count(lis[0])
b=lis.count(lis[1])
c=lis.count(lis[2])
if a+b+c == 4:
print("Yes")
else:
print("No") | lis = list(input().split())
a=lis.count(lis[0])
b=lis.count(lis[1])
c=lis.count(lis[2])
if a+b+c == 5:
print("Yes")
else:
print("No") | [
"literal.number.integer.change",
"control_flow.branch.if.condition.change"
] | 567,780 | 567,781 | u126812720 | python |
p02771 | lis = list(input().split())
a=lis.count(lis[0])
b=lis.count(lis[1])
c=lis.count(lis[2])
if a+b+C == 4:
print("Yes")
else:
print("No") | lis = list(input().split())
a=lis.count(lis[0])
b=lis.count(lis[1])
c=lis.count(lis[2])
if a+b+c == 5:
print("Yes")
else:
print("No") | [
"identifier.change",
"control_flow.branch.if.condition.change",
"literal.number.integer.change"
] | 567,782 | 567,781 | u126812720 | python |
p02771 | abc = input().split()
intlist = [int(s) for s in abc]
a,b,c = intlist[0],intlist[1],intlist[2]
if (a == b & a != c) | (a == c & a != b) | (b == c & c != a):
print("Yes")
else:
print("No")
| abc = input().split()
intlist = [int(s) for s in abc]
a,b,c = intlist[0],intlist[1],intlist[2]
if (a == b and a != c) | (a == c and a != b) | (b == c and c != a):
print("Yes")
else:
print("No")
| [
"control_flow.branch.if.condition.change"
] | 567,814 | 567,815 | u958210291 | python |
p02771 | dataList = input().split(" ")
if len(set(dataList)) == 2:
print("YES")
else:
print("No") | dataList = input().split(" ")
if len(set(dataList)) == 2:
print("Yes")
else:
print("No") | [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 567,818 | 567,819 | u817411959 | python |
p02771 | a,b,c = map(int, input().split())
if a==b:
if a!=c:
print("Yes")
else:
print("No")
elif a!=b:
if a==c:
print("Yes")
else:
if b==c:
print("Yes")
else:
print("NO") | a,b,c = map(int, input().split())
if a==b:
if a!=c:
print("Yes")
else:
print("No")
elif a!=b:
if a==c:
print("Yes")
else:
if b==c:
print("Yes")
else:
print("No") | [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 567,827 | 567,828 | u747941497 | python |
p02771 | a, b, c = map(int,input().split())
if ( a == b != c | a != b == c | a == c != b):
print('Yes')
else:
print('No')
| a, b, c = map(int,input().split())
if ( a == b != c or a != b == c or a == c != b):
print('Yes')
else:
print('No')
| [
"control_flow.branch.if.condition.change"
] | 567,830 | 567,831 | u742569919 | python |
p02771 | a, b, c = map(int,input().split())
if ( a == b != c | a != b == c | a == c != b):
print('yes')
else:
print('no')
| a, b, c = map(int,input().split())
if ( a == b != c or a != b == c or a == c != b):
print('Yes')
else:
print('No')
| [
"control_flow.branch.if.condition.change",
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 567,832 | 567,831 | u742569919 | python |
p02771 | a = list(map(int,input().split()))
b = 0
if a[0]==a[1] and a[1]==a[2]:
print("No")
elif a[0]!=a[1] and a[1]!=a[2] and a[0]!=a[2]:
print("NO")
else:
print("YES") | a = list(map(int,input().split()))
b = 0
if a[0]==a[1] and a[1]==a[2]:
print("No")
elif a[0]!=a[1] and a[1]!=a[2] and a[0]!=a[2]:
print("No")
else:
print("Yes") | [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 567,835 | 567,836 | u470618774 | python |
p02771 |
ABC = input().split()
A = ABC[0]
B = ABC[1]
C = ABC[2]
if A==B:
if B==C:
print("No")
else:
print("Yes")
exit()
if B==C:
if A==C:
print("No")
else:
print("Yes")
exit()
if A==C:
if B==C:
print("No")
else:
print("Yes")
exit()
|
ABC = input().split()
A = ABC[0]
B = ABC[1]
C = ABC[2]
if A==B:
if B==C:
print("No")
else:
print("Yes")
exit()
if B==C:
if A==C:
print("No")
else:
print("Yes")
exit()
if A==C:
if B==C:
print("No")
else:
print("Yes")
exit()
print("No")
| [
"call.add"
] | 567,839 | 567,840 | u561859676 | python |
p02771 | L = set(list(map(int, input().split())))
if len(L)==2:
print('YES')
else:
print('NO') | L = set(list(map(int, input().split())))
if len(L)==2:
print('Yes')
else:
print('No') | [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 567,841 | 567,842 | u054514819 | python |
p02771 | x,y,z=(input().split(" "))
if z == y:
if y ==x:
return("No")
else:
return("Yes")
else:
if z ==x:
return("Yes")
else:
if y == x:
return("Yes")
else:
return("No")
| x,y,z=(input().split(" "))
if z == y:
if y ==x:
print("No")
else:
print("Yes")
else:
if z ==x:
print("Yes")
else:
if y == x:
print("Yes")
else:
print("No")
| [
"function.return_value.change"
] | 567,847 | 567,848 | u244656600 | python |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.