s_id stringlengths 10 10 | p_id stringlengths 6 6 | u_id stringlengths 10 10 | date stringlengths 10 10 | language stringclasses 1
value | original_language stringclasses 11
values | filename_ext stringclasses 1
value | status stringclasses 1
value | cpu_time stringlengths 1 5 | memory stringlengths 1 7 | code_size stringlengths 1 6 | code stringlengths 1 539k |
|---|---|---|---|---|---|---|---|---|---|---|---|
s744693225 | p02391 | u184749404 | 1540384817 | Python | Python3 | py | Runtime Error | 0 | 0 | 122 | a,b =map(int.(i) for i in input.split())
if a > b:
print("a > b")
elif a == b:
print("a == b")
else :
print("a < b")
|
s047110872 | p02391 | u184749404 | 1540385440 | Python | Python3 | py | Runtime Error | 0 | 0 | 110 | a,b =map(int, input.split())
if a > b:
print("a > b")
elif a == b:
print("a == b")
else :
print("a < b")
|
s306283158 | p02391 | u316584871 | 1540858090 | Python | Python3 | py | Runtime Error | 0 | 0 | 214 | #include<stdio.h>
main(){
int a,b;
scanf("%d %d",&a,&b);
if (a<b){
printf("a < b\n");
}
else if (a > b){
printf("a > b\n");
}
else {
printf("a == b\n");
}
}
|
s953194637 | p02391 | u316584871 | 1540859762 | Python | Python3 | py | Runtime Error | 0 | 0 | 265 | #include<stdio.h>
int main(){
int a,b;
scanf("%d %d",&a,&b);
if (a<b)
{
printf("a < b");
}
else if (a > b){
printf("a > b");
}
else if (a == b)
{
printf("a == b");
}
printf("\n");
return 0;
}
|
s570688656 | p02391 | u293957970 | 1541217833 | Python | Python3 | py | Runtime Error | 0 | 0 | 122 |
a,b = map(int,input().spilit())
if a > b :
op = ">"
elif a < b:
op = "<"
else:
op = "=="
print("a %s b"%op)
|
s298982509 | p02391 | u293957970 | 1541217886 | Python | Python3 | py | Runtime Error | 0 | 0 | 120 | a,b = map(int,input().spilit())
if a > b:
op = ">"
elif a < b:
op = "<"
else:
op = "=="
print("a %s b"%op)
|
s814191881 | p02391 | u293957970 | 1541218130 | Python | Python3 | py | Runtime Error | 0 | 0 | 120 | a,b = map(int,input().spilit())
if a > b:
op = '>'
elif a < b:
op = '<'
else:
op = '=='
print("a %s b"%op)
|
s448200337 | p02391 | u266788078 | 1545315668 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | A,B =map(int,input().split())
if A-B == 0:
print(A+"=="+B)
elif A > B:
print(A+">"+B)
print(A+"<"+B)
|
s181221876 | p02391 | u266788078 | 1545315699 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | A,B =map(int,input().split())
if A-B == 0:
print(A+"=="+B)
elif A >= B:
print(A+">"+B)
print(A+"<"+B)
|
s315210983 | p02391 | u266788078 | 1545315750 | Python | Python3 | py | Runtime Error | 0 | 0 | 120 | A,B =map(int,input().split())
if A-B == 0:
print(A+"=="+B)
elif A >= B:
print(A+">"+B)
else:
print(A+"<"+B)
|
s429515885 | p02391 | u266788078 | 1545315790 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | A,B =map(int,input().split())
if A-B == 0:
print(A"=="B)
elif A >= B:
print(A">"B)
else:
print(A"<"B)
|
s305311310 | p02391 | u266788078 | 1545315912 | Python | Python3 | py | Runtime Error | 0 | 0 | 112 | A,B =map(int,input())
if A-B == 0:
print(A,"==",B)
elif A >= B:
print(A,">",B)
else:
print(A,"<",B)
|
s175536273 | p02391 | u638889288 | 1545578534 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | a=int(input())
b=int(input())
if a>b:
print('a > b')
elif a<b:
print('a < b')
else :
print('a=b')
|
s583300712 | p02391 | u638889288 | 1545578775 | Python | Python3 | py | Runtime Error | 0 | 0 | 110 | a=input()
b=input()
if a > b :
print('a > b')
elif a < b :
print('a < b')
else :
print('a == b')
|
s476082204 | p02391 | u638889288 | 1545578870 | Python | Python3 | py | Runtime Error | 0 | 0 | 110 | a=input()
b=input()
if a > b :
print('a > b')
elif a < b :
print('a < b')
else :
print('a == b')
|
s692573810 | p02391 | u316246166 | 1545645975 | Python | Python3 | py | Runtime Error | 0 | 0 | 120 | a, b = int(input())
if(a > b);
print('a > b')
if(a < b);
print('a < b')
if(a == b);
print('a == b')
|
s274516830 | p02391 | u316246166 | 1545646316 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | a, b = int(input())
if(a > b);
print('a > b')
if(a < b);
print('a < b')
if(a == b);
print('a == b')
|
s792713283 | p02391 | u316246166 | 1545646384 | Python | Python3 | py | Runtime Error | 0 | 0 | 113 | a, b = int(input())
if a > b;
print('a > b')
if a < b;
print('a < b')
if a == b;
print('a == b')
|
s013991391 | p02391 | u316246166 | 1545646429 | Python | Python3 | py | Runtime Error | 0 | 0 | 113 | a, b = int(input())
if a > b:
print('a > b')
if a < b:
print('a < b')
if a == b:
print('a == b')
|
s220185640 | p02391 | u316246166 | 1545646516 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | a, b = int(input().split())
if a > b:
print('a > b')
if a < b:
print('a < b')
if a == b:
print('a == b')
|
s220920639 | p02391 | u962909487 | 1545813098 | Python | Python3 | py | Runtime Error | 0 | 0 | 104 | a,b = map(int(input().split())
if a>b
print(a+'<'+b)
if a<b
print(a+'>'+b)
else
print(a+'='+b)
|
s207014234 | p02391 | u643542669 | 1545836888 | Python | Python3 | py | Runtime Error | 0 | 0 | 119 | a, b = map(int, input().split())
if a > b:
print("a > b"
elif a < b:
print("a < b")
else:
print("a == b")
|
s474304056 | p02391 | u498462680 | 1546087478 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | a,b = input().split()
if a>b:
print("a > b")
else if a==b:
print("a == b")
else:
print("a < b")
|
s794502503 | p02391 | u498462680 | 1546087567 | Python | Python3 | py | Runtime Error | 0 | 0 | 111 | a,b = int(input().split())
if a>b:
print("a > b")
elif a==b:
print("a == b")
else:
print("a < b")
|
s662005117 | p02391 | u984892564 | 1551534912 | Python | Python3 | py | Runtime Error | 0 | 0 | 142 | string = input()
a, b = input().split(' ')
if (a > b):
print('a > b')
elif (a < b):
print('a < b')
else (a == b):
print('a == b')
|
s667691498 | p02391 | u984892564 | 1551534998 | Python | Python3 | py | Runtime Error | 0 | 0 | 129 | string = input()
a, b = input().split(' ')
if a > b:
print('a > b')
elif a < b:
print('a < b')
else:
print('a == b')
|
s612013810 | p02391 | u525395303 | 1555910522 | Python | Python3 | py | Runtime Error | 0 | 0 | 3 | ko
|
s522268400 | p02391 | u997476941 | 1555910626 | Python | Python3 | py | Runtime Error | 0 | 0 | 144 | a, b = map(int,raw_input().split())
if a<b:
print "a < b"
elif a>b:
print "a > b"
elif a==b:
print "a == b"
else:
print "none"
|
s155653277 | p02391 | u114860785 | 1555910989 | Python | Python3 | py | Runtime Error | 0 | 0 | 118 | int(input("")) = a
int(input("")) = b
if a>b
print("a > b")
else if a<b
print("a < b")
else;
print("a == b")
|
s986892758 | p02391 | u468794560 | 1555912002 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | x, y = map(int, input(). split())
if x < y:
print('x < y')
elif x == y:
print('x == y')
else:
pass
|
s804256249 | p02391 | u468794560 | 1555912020 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | x, y = map(int, input(). split())
if x < y:
print('x < y')
elif x == y:
print('x == y')
else:
pass
|
s723409932 | p02391 | u468794560 | 1555912061 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | x, y = map(int, input(). split())
if x < y:
print('x < y')
elif x == y:
print('x == y')
else:
pass
|
s108435212 | p02391 | u678843586 | 1555912575 | Python | Python3 | py | Runtime Error | 0 | 0 | 115 | a, b = map(int, input().split())
if a < b :
print('a < b')
elif a > b :
print('a > b')
else:
print('a == b'
|
s461386309 | p02391 | u678843586 | 1555912817 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | a, b = map(int, input().split())
if a < b :
print('a < b')
else a > b :
print('a > b')
else:
print('a == b')
|
s115515662 | p02391 | u651717882 | 1555942112 | Python | Python3 | py | Runtime Error | 0 | 0 | 159 | a = int(input())
b = int(input())
A = -1000<= a <= 0, 0< b <= 1000
B = 0<= a, 0>b
C = a==b
if A:
print(a<b)
elif B:
print(a>b)
elif C:
print(a=b)
|
s359713154 | p02391 | u651717882 | 1555942401 | Python | Python3 | py | Runtime Error | 0 | 0 | 115 | a = int(input())
b = int(input())
if a<b:
print("a<b")
elif a>b:
print("a>b")
elif a==b:
print("a==b")
|
s448412987 | p02391 | u651717882 | 1555942441 | Python | Python3 | py | Runtime Error | 0 | 0 | 111 | a = int(input())
b = int(input())
if a<b:
print("a<b")
if a>b:
print("a>b")
if a==b:
print("a==b")
|
s033367187 | p02391 | u651717882 | 1555942663 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | a,b = int(),input().split()
if a<b:
print("a<b")
elif a>b:
print("a>b")
elif a==b:
print("a==b")
|
s778017639 | p02391 | u651717882 | 1555942719 | Python | Python3 | py | Runtime Error | 0 | 0 | 115 | a,b = int(),input().split()
if a < b:
print("a<b")
elif a > b:
print("a>b")
else a == b:
print("a==b")
|
s921797346 | p02391 | u651717882 | 1555942743 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | a,b = int(),input().split()
if a < b:
print("a < b")
elif a > b:
print("a > b")
else a == b:
print("a == b")
|
s941558897 | p02391 | u651717882 | 1555942758 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | a,b = int(),input().split()
if a < b:
print("a < b")
elif a > b:
print("a > b")
elif a == b:
print("a == b")
|
s273703316 | p02391 | u651717882 | 1555942811 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | a,b = int(),input().split()
if a < b:
print("a < b")
elif a > b:
print("a > b")
else a == b:
print("a == b")
|
s427594802 | p02391 | u651717882 | 1555942839 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | a,b = int(),input().split()
if a < b:
print("a < b")
elif a > b:
print("a > b")
else:
print("a == b")
|
s629012049 | p02391 | u651717882 | 1555943169 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | a,b = int(),input().split()
if a < b:
print("a < b")
elif a > b:
print("a > b")
else:
print("a == b")
|
s151314500 | p02391 | u525395303 | 1555982185 | Python | Python3 | py | Runtime Error | 0 | 0 | 144 | a, b = map(int,raw_input().split())
if a<b:
print "a < b"
elif a>b:
print "a > b"
elif a==b:
print "a == b"
else:
print "none"
|
s792209849 | p02391 | u108130680 | 1556030735 | Python | Python3 | py | Runtime Error | 0 | 0 | 129 | a,b=map(int, input().split())
if a < b:
print("a < b")
elif a == b:
print("a == b")
else:
print("a > b")
|
s365277097 | p02391 | u327386274 | 1556360745 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | a,b = map(int,input().split())
if a > b:
print('a > b')
elif a = b:
print('a == b')
else:
print('a < b')
|
s804133734 | p02391 | u001166815 | 1556542763 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | #coding utf-8
a,b = map(int,input().split())
if(a == b):
print('a == b')
elif(a < b):
print('a < b')
else:
print(
|
s131763344 | p02391 | u001166815 | 1556542782 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | #coding utf-8
a,b = map(int,input().split())
if(a == b):
print('a == b')
elif(a < b):
print('a < b')
else:
print(
|
s618599725 | p02391 | u001166815 | 1556542879 | Python | Python3 | py | Runtime Error | 0 | 0 | 136 | #coding utf-8
a,b = map(int,input().split())
if(a == b):
print('a == b',sep="")
elif(a < b):
print('a < b',sep="")
else:
print('a >
|
s255372937 | p02391 | u397862444 | 1558935214 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | a,b = map(int,input().split())
if a > b:
op = '>'
elif a < b:
op = '=='
print("a %s b"%op)
|
s100486109 | p02391 | u214526598 | 1558935314 | Python | Python3 | py | Runtime Error | 0 | 0 | 136 | a,b = map(int,input().split())
if a > b:
op = '>'
elif a < b:
op = '<'
else:
op = '=='
print("a %s b"%op)
|
s377534444 | p02391 | u397862444 | 1558935332 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | a,b = map(int,input().split())
if a > b:
op = '>'
elif a < b:
op = '<'
else:
op = '=='
print("a %s b"%op)
|
s324800540 | p02391 | u397862444 | 1558935353 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | a,b = map(int,input().split())
if a > b:
op = '>'
elif a < b:
op = '<'
else:
op = '=='
print("a %s b"%op)
|
s752410375 | p02391 | u762654710 | 1558942862 | Python | Python3 | py | Runtime Error | 0 | 0 | 104 | a=int(input())
b=int(input())
if a<b:
print(a"<"b)
elif a>b:
print(a">"b)
elif a==b:
print(a"=="b)
|
s863450147 | p02391 | u762654710 | 1558942901 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | a=int(input())
b=int(input())
if a<b:
print(a<b)
elif a>b:
print(a>b)
elif a==b:
print(a==b)
|
s306095930 | p02391 | u967890409 | 1559007046 | Python | Python3 | py | Runtime Error | 0 | 0 | 157 | import sys
data=int(input())
data2=int(input())
if(data>data2):
print("a > b")
if(data<data2):
print("a < b")
if(data==data2):
print("a == b")
|
s720356918 | p02391 | u477464845 | 1559049160 | Python | Python3 | py | Runtime Error | 0 | 0 | 108 | a,b = map(int,input().strip())
if a<b:
print('a<b')
elif a> b:
print('a>b')
else:
print('a==b')
|
s784836817 | p02391 | u397862444 | 1559538573 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | a,b = map(int , input().split())
if a < b :
print("a < b")
elif a > b:
print("a > b")
else:
print("a == b")
|
s745383541 | p02391 | u397862444 | 1559538626 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | a,b = map(int , input().split())
if a < b :
print("a < b")
elif a > b:
print("a > b")
else:
print("a == b")
|
s840518251 | p02391 | u918881304 | 1559571802 | Python | Python3 | py | Runtime Error | 0 | 0 | 112 | a,b = map(int,input().split())
if a < b:
print("a < b")
elif a > b:
print("a > b")
else print("a == b")
|
s726402426 | p02391 | u451187291 | 1404563422 | Python | Python | py | Runtime Error | 0 | 0 | 192 | def aizu001 ():
xs = map(int,raw_input().split())
a = xs[0]
b = xs[1]
if a > b:
print "a > b"
else if a < b:
print "a < b"
else :
print "a == b" |
s328643464 | p02391 | u451187291 | 1404563461 | Python | Python | py | Runtime Error | 0 | 0 | 204 | def aizu001 ():
xs = map(int,raw_input().split())
a = xs[0]
b = xs[1]
if a > b:
print "a > b"
else if a < b:
print "a < b"
else :
print "a == b"
aizu001 () |
s913193816 | p02391 | u971748390 | 1409827947 | Python | Python | py | Runtime Error | 0 | 0 | 150 | a,b= map(int,input().split());
if a < b :
print("%d < %d" % (a,b));
elif a > b :
print("%d > %d" % (a,b));
elif a == b :
print("%d == %d" %(a,b)) ; |
s378295597 | p02391 | u615353970 | 1410560773 | Python | Python | py | Runtime Error | 0 | 0 | 136 | input = raw_input().split()
a = input[0]
b = input[1]
if (a == b) :
print "a == b"
elif (a > b) :
print "a > b"
elif :
print "a < b" |
s406465145 | p02391 | u253257865 | 1415549962 | Python | Python | py | Runtime Error | 0 | 0 | 105 | a = input()
b = input()
if a > b:
print "a > b"
elif a < b:
print "a < b"
else:
print "a = b" |
s316414258 | p02391 | u253257865 | 1415550139 | Python | Python | py | Runtime Error | 0 | 0 | 128 | a_b = input().split(" ")
a = a_b[0]
b = a_b[1]
if a > b:
print "a > b"
elif a < b:
print "a < b"
else:
print "a = b" |
s135274708 | p02391 | u749493116 | 1420110277 | Python | Python3 | py | Runtime Error | 0 | 0 | 126 | #coding utf-8
x=input()
y=input()
if x > y:
print("a > b")
elif x==y:
print("a == b")
else:
print("a < b") |
s042052817 | p02391 | u580607517 | 1420277160 | Python | Python | py | Runtime Error | 0 | 0 | 121 | a, b = int(raw_input())
a = int(raw_input())
b, c = divmod(a, 3600)
d, e = divmod(c, 60)
print ("%d:%d:%d") % (b,d,e) |
s344447526 | p02391 | u580607517 | 1420277269 | Python | Python | py | Runtime Error | 0 | 0 | 96 | a, b = int(rawinput())
if a > b:
print "a > b"
elif a < b:
print "a < b"
else:
print "a == b" |
s837684737 | p02391 | u580607517 | 1420277304 | Python | Python | py | Runtime Error | 0 | 0 | 97 | a, b = int(raw_input())
if a > b:
print "a > b"
elif a < b:
print "a < b"
else:
print "a == b" |
s640065189 | p02391 | u580607517 | 1420277345 | Python | Python | py | Runtime Error | 0 | 0 | 97 | a, b = int(raw_input())
if a > b:
print "a > b"
elif a < b:
print "a < b"
else:
print "a == b" |
s716465247 | p02391 | u067975558 | 1422326210 | Python | Python3 | py | Runtime Error | 0 | 0 | 144 | (a, b) = input().rstrip().split('')
a = int(a)
b = int(b)
if a < b:
print('a < b')
elif a > b:
print('a > b')
else:
print('a == b') |
s927420641 | p02391 | u823030818 | 1422326233 | Python | Python3 | py | Runtime Error | 0 | 0 | 144 | (a,b) = input().rstlip().split(' ')
a = int(a)
b = int(b)
if a < b:
print('a < b')
elif a > b:
print('a > b')
else:
print('a == b') |
s998229802 | p02391 | u067975558 | 1422326276 | Python | Python3 | py | Runtime Error | 0 | 0 | 144 | (a, b) = input().rstrip().split('')
a = int(a)
b = int(b)
if a < b:
print('a < b')
elif a > b:
print('a > b')
else:
print('a == b') |
s118055543 | p02391 | u823030818 | 1422326312 | Python | Python3 | py | Runtime Error | 0 | 0 | 145 | (a, b) = input().rstlip().split(' ')
a = int(a)
b = int(b)
if a < b:
print('a < b')
elif a > b:
print('a > b')
else:
print('a == b') |
s583126827 | p02391 | u823030818 | 1422326387 | Python | Python3 | py | Runtime Error | 0 | 0 | 148 | (a, b) = input().rstlip().split(' ')
a = int(a)
b = int(b)
if a < b:
print('a < b')
elif a > b:
print('a > b')
else:
print('a == b') |
s070151267 | p02391 | u067975558 | 1422326392 | Python | Python3 | py | Runtime Error | 0 | 0 | 144 | (a, b) = input().rstrip().split('')
a = int(a)
b = int(b)
if a < b:
print('a < b')
elif a > b:
print('a > b')
else:
print('a == b') |
s051360741 | p02391 | u297342993 | 1422326458 | Python | Python3 | py | Runtime Error | 0 | 0 | 215 | (a,b) = input().rstrip().split(' ')
#a = int(a)
#b = int(b)
#以下でも代替可
(a,b) = [int(x) for x in input().rstrip().split(' ')]
if a < b:
print("a < b")
elif a > b:
print("a > b")
else:
print("a == b") |
s553702158 | p02391 | u088816384 | 1424955832 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | a, b = int(input().split())
if a < b:
print("a<b")
if a > b:
print("a>b")
if a == b:
print("a==b") |
s158524475 | p02391 | u166912986 | 1427265455 | Python | Python | py | Runtime Error | 0 | 0 | 158 | n=map(int,raw_input().split())
if n[0]<n[1]:
print str(n[0])+"<"str(n[1])
elif n[0]>n[1]:
print str(n[0])+">"str(n[1])
else:
print str(n[0])+"=="+str(n[1]) |
s664286424 | p02391 | u436720733 | 1432107802 | Python | Python3 | py | Runtime Error | 0 | 0 | 123 |
a, b = map(int(), input().split())
if a < b:
print('a < b')
elif a > b:
print('a > b')
else:
print('a == b') |
s924724995 | p02391 | u410785272 | 1432108939 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | a, b = int(input())
if a > b:
print('a > b')
elif a < b:
print('a < b')
else:
print('a==b') |
s013094204 | p02391 | u062590758 | 1432109150 | Python | Python3 | py | Runtime Error | 0 | 0 | 104 | a, b = map(int, input().split())
if a>b:
print(a>b)
else if a<b:
print(a<b)
else
print(a=b) |
s861922811 | p02391 | u062590758 | 1432109232 | Python | Python3 | py | Runtime Error | 0 | 0 | 111 | a, b = map(int, input().split())
if a>b:
print('a>b')
else if a<b:
print('a<b')
else:
print('a=b') |
s188233880 | p02391 | u062590758 | 1432109294 | Python | Python3 | py | Runtime Error | 0 | 0 | 108 | a, b = map(int, input().split())
if a>b:
print('a>b')
elif a<b:
print('a<b')
else:
print('a=b') |
s997389347 | p02391 | u062590758 | 1432109333 | Python | Python3 | py | Runtime Error | 0 | 0 | 111 | a, b = map(int, input().split(' '))
if a>b:
print('a>b')
elif a<b:
print('a<b')
else:
print('a=b') |
s174429002 | p02391 | u555750476 | 1432110602 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | a,b=map(int,input().split())
if a<b
print('a<b')
elif a>b
print('a>b')
else
print('a==b') |
s353441934 | p02391 | u555750476 | 1432110646 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | a,b=map(int,input().split())
if a<b
print('a<b')
elif a>b
print('a>b') |
s098704330 | p02391 | u555750476 | 1432110708 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | a,b=map(int,input().split())
if a<b
print('a<b')
elif a>b
print('a>b')
elif a==b
print('a==b') |
s325016954 | p02391 | u555750476 | 1432110729 | Python | Python3 | py | Runtime Error | 0 | 0 | 95 | a,b=map(int,input().split())
if a<b
print('a<b')
elif a>b
print('a>b')
else:
print('a==b') |
s627985851 | p02391 | u555750476 | 1432110764 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | a,b=map(int,input().split())
if a<b
print('a<b')
elif a>b
print('a>b')
elif a==b
print('a==b') |
s142168525 | p02391 | u555750476 | 1432110840 | Python | Python3 | py | Runtime Error | 0 | 0 | 105 | a, b = map(int,input().split())
if a > b:
print 'a > b'
elif a < b:
print 'a < b'
else:
print 'a == b' |
s685903494 | p02391 | u555750476 | 1432110860 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | a, b = map(int,input().split())
if a > b:
print 'a > b'
elif a < b:
print 'a < b'
else:
print 'a == b' |
s586931988 | p02391 | u172616925 | 1434864166 | Python | Python | py | Runtime Error | 0 | 0 | 83 | a,b = input().split()
if a > b
print a > b
elif a < b
print a < b
else
print a == b |
s860455656 | p02391 | u172616925 | 1434864270 | Python | Python | py | Runtime Error | 0 | 0 | 89 | a,b = input().split()
if a > b:
print a > b
elif a < b:
print a < b
else:
print a == b |
s002184480 | p02391 | u172616925 | 1434864425 | Python | Python | py | Runtime Error | 0 | 0 | 95 | a,b = input().split()
if a > b:
print "a > b"
elif a < b:
print "a < b"
else:
print "a == b" |
s716016731 | p02391 | u446066125 | 1436148329 | Python | Python3 | py | Runtime Error | 0 | 0 | 158 | num = input().split();
a = int(num[0]);
b = int(num[1]);
if a > b :
print(a,b,sep='>');
else if a < b :
print(a,b,sep='<');
else :
print(a,b,sep="=="); |
s679985364 | p02391 | u614711522 | 1436148836 | Python | Python3 | py | Runtime Error | 0 | 0 | 139 | x = input().split()
a = int( x[0])
b = int( x[1])
if a > b:
print( "a > b")
else a < b:
print( "a < b")
else:
print( "a == b") |
s672471425 | p02391 | u614711522 | 1436149225 | Python | Python3 | py | Runtime Error | 0 | 0 | 139 | x = input().split()
a = int( x[0])
b = int( x[1])
if a > b:
print( "a > b")
elif a < b:
print( "a < b")
else:
print( "a == b" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.