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
int64
0
100
memory
stringlengths
4
6
code_size
int64
15
14.7k
code
stringlengths
15
14.7k
problem_id
stringlengths
6
6
problem_description
stringlengths
358
9.83k
input
stringlengths
2
4.87k
output
stringclasses
807 values
__index_level_0__
int64
1.1k
1.22M
s664154869
p00376
u053015104
1589779210
Python
Python3
py
Accepted
20
5588
77
a,b= map(int, input().split()) if a < b: print(b-a) else: print(a-b)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,234
s852258292
p00376
u056263240
1589779098
Python
Python3
py
Accepted
20
5588
87
x1,x2 = map(int,input().split()) if x1 > x2: print(x1-x2) else : print(x2-x1)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,235
s834284008
p00376
u034153923
1589778976
Python
Python3
py
Accepted
20
5584
87
x1,x2 = map(int,input().split()) if x1 > x2: print(x1-x2) else : print(x2-x1)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,236
s698695079
p00376
u413645175
1589778359
Python
Python3
py
Accepted
20
5584
98
x1, x2 = map(int, input().split()) if x1 >= x2: print(x1 - x2) else: print(x2 - x1)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,237
s119393955
p00376
u167524059
1589728410
Python
Python3
py
Accepted
20
5588
86
x1,x2=map(int,input().split()) if x1<=x2: print(x2 - x1) else: print(x1 - x2)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,238
s447845671
p00376
u996694149
1589720953
Python
Python3
py
Accepted
20
5596
62
x1,x2 = (int(x) for x in input().split()) print(abs(x1 - x2))
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,239
s936231834
p00376
u555228137
1589686092
Python
Python3
py
Accepted
20
5584
88
x1,x2=map(int,input().split()) if x1>=x2: print(x1-x2) elif x1<x2: print(x2-x1)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,240
s308320812
p00376
u506949161
1589629247
Python
Python3
py
Accepted
30
5592
96
a,b=map(int,input().split()) if a<b: print(b-a) elif a>b: print(a-b) else: print(0)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,241
s587796901
p00376
u842461513
1589599896
Python
Python3
py
Accepted
20
5576
96
#標準入力をし、距離の差を求める a,b = map(int,input().split()) print(abs(b - a))
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,242
s280319529
p00376
u829520323
1589598156
Python
Python3
py
Accepted
20
5580
53
x1,x2 = map(int,input().split()) print(abs(x1 - x2))
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,243
s195544300
p00376
u799016206
1589563479
Python
Python3
py
Accepted
20
5576
49
x1,x2=map(int,input().split()) print(abs(x1-x2))
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,244
s970872122
p00376
u919773430
1589536615
Python
Python3
py
Accepted
20
5588
89
a , b = map (int , input() . split()) if( a>b ): print( a-b ) else: print( b-a )
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,245
s947035137
p00376
u548283997
1589531240
Python
Python3
py
Accepted
20
5628
75
x1,x2=map(int,input().split()) print('{:.0f}'.format(((x1-x2)**2)**(1/2)))
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,246
s135861718
p00376
u082412851
1589531001
Python
Python3
py
Accepted
20
5632
77
x1,x2 = map(int,input().split()) print('{:.0f}'.format(((x1-x2)**2)**(1/2)))
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,247
s084271045
p00376
u512192552
1589467084
Python
Python3
py
Accepted
20
5592
101
# coding: utf-8 # Your code here! x1,x2=map(int,input().split()) x1,x2=sorted([x1,x2]) print(x2-x1)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,248
s021880808
p00376
u228556128
1589431623
Python
Python3
py
Accepted
20
5584
83
x1,x2=map(int,input().split()) if x1>=x2: print(x1-x2) else: print(x2-x1)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,249
s587555582
p00376
u438043982
1589420125
Python
Python3
py
Accepted
20
5592
124
x1,x2=map(int,input().split()) if x1<x2: print(x2 - x1) elif x1>x2: print(x1 - x2) elif x1==x2: print(x1 - x2)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,250
s604640589
p00376
u453677662
1589378309
Python
Python3
py
Accepted
20
5580
46
x,y=map(int,input().split()) print(abs(x-y))
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,251
s479571812
p00376
u355413291
1589357266
Python
Python3
py
Accepted
20
5580
49
x1,x2=map(int,input().split()) print(abs(x1-x2))
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,252
s530381493
p00376
u900012957
1589356499
Python
Python3
py
Accepted
20
5580
51
x1,x2 = map(int,input().split()) print(abs(x1-x2))
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,253
s796515480
p00376
u695568874
1589336968
Python
Python3
py
Accepted
20
5580
49
x1,x2=map(int,input().split()) print(abs(x1-x2))
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,254
s912832394
p00376
u363460225
1589302076
Python
Python3
py
Accepted
20
5600
121
x1,x2=map(int,input().split()) if x1>x2: print(round(x1-x2)) elif x1==x2: print("0") else: print(x2-x1)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,255
s256809933
p00376
u206985725
1589287529
Python
Python3
py
Accepted
20
5604
122
x,y=(int(x)for x in input().split()) if x>y: print(x-y) elif x<y: print(y-x) elif x==y: print('0')
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,256
s748375284
p00376
u747536722
1589284957
Python
Python3
py
Accepted
20
5600
98
x1,x2=(int(x) for x in input().split()) if 0<=x1 and x2<=100: print(abs(x1-x2)) else: pass
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,257
s929692665
p00376
u705625724
1589269306
Python
Python3
py
Accepted
20
5600
127
# coding: utf-8 # Your code here! a,b=map(int,input().split()) A = int() if(a>b): A = a-b else: A = b-a print('%d'%A)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,258
s935496447
p00376
u427834127
1589265629
Python
Python3
py
Accepted
20
5588
74
a,b=map(int,input().split()) if a<=b: print(b-a) else: print(a-b)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,259
s355075776
p00376
u918533241
1589265382
Python
Python3
py
Accepted
20
5588
81
x1,x2=map(int,input().split()) if x1>x2: print(x1-x2) else: print(x2-x1)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,260
s002665164
p00376
u419548414
1589254342
Python
Python3
py
Accepted
20
5584
74
x,y=map(int,input().split()) if x>=y: print(x-y) else: print(y-x)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,261
s981953048
p00376
u677563181
1589253162
Python
Python3
py
Accepted
20
5584
56
x1,x2 = map(int, input().split()) c=abs(x1-x2) print(c)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,262
s306571479
p00376
u272062354
1589250421
Python
Python3
py
Accepted
20
5588
86
x1,x2=map(int,input().split()) if x1>=x2: print(x1-x2) else: print(x2-x1)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,263
s581968666
p00376
u457539618
1589250160
Python
Python3
py
Accepted
20
5656
114
import math a , b = map(int,input().split()) if a<b: print(b-a) elif a>b: print(a-b) else: print("0")
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,264
s007169815
p00376
u716689190
1589247980
Python
Python3
py
Accepted
20
5580
45
a,b=map(int,input().split()) print(abs(a-b))
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,265
s347320446
p00376
u171326376
1589246659
Python
Python3
py
Accepted
20
5584
61
x_1,x_2 = map(int,input().split()) x = abs(x_2-x_1) print(x)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,266
s957424896
p00376
u706683821
1589246572
Python
Python3
py
Accepted
20
5588
76
a,b=map(int,input().split()) if a>=b: print(a-b) else: print(b-a)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,267
s291915929
p00376
u630948380
1589245708
Python
Python3
py
Accepted
20
5596
108
a,b=map(int,input().split()) if a<b: print(int(b-a)) elif a>b: print(int(a-b)) else: print("0")
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,268
s749070216
p00376
u253463111
1589209179
Python
Python3
py
Accepted
20
5584
74
a,b=map(int,input().split()) if a<b: print(b-a) else : print(a-b)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,269
s245163888
p00376
u290304811
1589202469
Python
Python3
py
Accepted
20
5592
101
a,b = map(int,input().split()) if a<b: print(b-a) elif a>b: print(a-b) else: print("0")
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,270
s997626502
p00376
u444626963
1589186090
Python
Python3
py
Accepted
20
5592
79
a,b=map(int,input().split()) c=(b-a) if c>0: print(c) else: print(-c)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,271
s106016571
p00376
u868891301
1589186024
Python
Python3
py
Accepted
20
5580
49
x1,x2=map(int,input().split()) print(abs(x1-x2))
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,272
s898187476
p00376
u645087541
1589182948
Python
Python3
py
Accepted
20
5580
52
x1,x2 = map(int,input().split()) print(abs(x2-x1))
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,273
s757283934
p00376
u064625546
1589181305
Python
Python3
py
Accepted
20
5588
81
x1,x2=map(int,input().split()) if x1>x2: print(x1-x2) else: print(x2-x1)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,274
s513390220
p00376
u162292165
1589181203
Python
Python3
py
Accepted
20
5648
70
import math a,b=map(int,input().split()) c=int(a-b) d=abs(c) print(d)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,275
s781065135
p00376
u627612495
1589180714
Python
Python3
py
Accepted
20
5584
65
x1,x2 = map(int,input().split()) y = x1 - x2 Y = abs(y) print(Y)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,276
s612082784
p00376
u838993229
1589180359
Python
Python3
py
Accepted
20
5588
77
a,b = map(int,input().split()) if a < b: print(b-a) else: print(a-b)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,277
s263533660
p00376
u397004753
1589179579
Python
Python3
py
Accepted
20
5588
81
x1,x2=map(int,input().split()) if x1>=x2: print(x1-x2) else: print(x2-x1)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,278
s952117513
p00376
u118506623
1589177879
Python
Python3
py
Accepted
20
5588
97
x1,x2 = map(int,input().split()) if x1 > x2 : print(int(x1-x2)) else : print(int(x2-x1))
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,279
s816347105
p00376
u874049078
1589176747
Python
Python3
py
Accepted
20
5592
118
x1, x2 = map(int, input().split()) if x1> x2: print(x1 - x2) elif x1< x2: print(x2 - x1) else: print("0")
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,280
s730040482
p00376
u981910313
1589176074
Python
Python3
py
Accepted
20
5588
89
x_1,x_2=map(int,input().split()) if x_1<x_2: print(x_2-x_1) else: print(x_1-x_2)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,281
s888487530
p00376
u371026526
1589176042
Python
Python3
py
Accepted
20
5588
74
a,b = map(int,input().split()) if a<b: print(b-a) else: print(a-b)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,282
s298213100
p00376
u931484744
1589173042
Python
Python3
py
Accepted
20
5592
126
# coding: utf-8 # Your code here! x1, x2 = map(int, input().split()) if x1 >= x2: print(x1 - x2) else: print(x2 - x1)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,283
s210618518
p00376
u994684803
1589172651
Python
Python3
py
Accepted
20
5588
86
x1,x2=map(int,input().split()) if x1>x2: print(x1 - x2) else: print(x2 - x1)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,284
s015254850
p00376
u747915832
1589172547
Python
Python3
py
Accepted
20
5668
89
import math a, b = (int(x) for x in input().split()) print(int ( math.sqrt((a-b)**2) ) )
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,285
s518124624
p00376
u442912414
1589165040
Python
Python3
py
Accepted
20
5592
100
a,b =map(int,input().split()) if a>b: print(a-b) elif a==b: print("0") else: print(b-a)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,286
s335946965
p00376
u322947441
1589164426
Python
Python3
py
Accepted
20
5588
76
a,b= map(int,input().split()) if a < b: print(b-a) else: print(a-b)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,287
s315485925
p00376
u795882061
1589157783
Python
Python3
py
Accepted
20
5584
91
x1, x2 = map(int,input().split()) if x1 >= x2: print(x1 - x2) else: print(x2 - x1)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,288
s401925032
p00376
u577978368
1589129073
Python
Python3
py
Accepted
20
5588
74
a,b=map(int,input().split()) if(a>b): print(a-b) else: print(b-a)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,289
s231524368
p00376
u320921262
1589095678
Python
Python3
py
Accepted
20
5588
74
a,b=map(int,input().split()) if a<b: print(b-a) else : print(a-b)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,290
s228316680
p00376
u514242733
1589029212
Python
Python3
py
Accepted
20
5592
71
x=input().split() y=list(map(int,x)) a=y[0] b=y[1] c=abs(a-b) print(c)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,291
s389944740
p00376
u862272701
1589017785
Python
Python3
py
Accepted
20
5592
114
x1,x2 = map(int,input().split()) if x1 > x2: print(x1-x2) elif x2 > x1: print(x2-x1) else: print("0")
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,292
s763080169
p00376
u037566157
1589014620
Python
Python3
py
Accepted
30
5600
61
a,b=(int(x) for x in input().split()) print(abs(round(b-a)))
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,293
s682095507
p00376
u140569607
1589011746
Python
Python3
py
Accepted
20
5588
83
x1,x2 = map(int,input().split()) if x1>x2: print(x1-x2) else: print(x2-x1)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,294
s946866519
p00376
u753534330
1588945775
Python
Python3
py
Accepted
20
5588
95
x1, x2 = map(int, input().split()) if x1<=x2: d = x2-x1 else: d = x1-x2 print(d)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,295
s048108498
p00376
u904289400
1588930657
Python
Python3
py
Accepted
20
5580
49
x1,x2=map(int,input().split()) print(abs(x2-x1))
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,296
s418619200
p00376
u192469946
1588925284
Python
Python3
py
Accepted
20
5584
63
a , b = map(int,input().split()) x = a - b y = abs(x) print(y)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,297
s266015218
p00376
u259416836
1588922646
Python
Python3
py
Accepted
20
5588
82
x1,x2=map(int,input().split()) if x1>x2: print(x1-x2) else: print(x2-x1)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,298
s324037691
p00376
u976648183
1588918816
Python
Python3
py
Accepted
20
5664
79
import math a,b=map(int,input().split()) c=math.fabs(a-b) print(math.floor(c))
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,299
s809703045
p00376
u711365732
1588906330
Python
Python3
py
Accepted
20
5596
120
l = input().split() a = int(l[0]) b = int(l[1]) if a<b: print (b-a) elif a>b: print (a-b) else: print ('0')
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,300
s826242199
p00376
u583329397
1588865066
Python
Python3
py
Accepted
20
5588
81
x1,x2=map(int,input().split()) if x1<x2: print(x2-x1) else: print(x1-x2)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,301
s553371628
p00376
u421274895
1588846881
Python
Python3
py
Accepted
20
5588
82
x1,x2=map(int,input().split()) if x1>=x2: print(x1-x2) else: print(x2-x1)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,302
s194817515
p00376
u350963229
1588830181
Python
Python3
py
Accepted
20
5580
50
x1,x2=map(int,input().split()) print(abs(x1-x2))
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,303
s918472455
p00376
u455994792
1588766245
Python
Python3
py
Accepted
20
5592
97
x1,x2= map(int,input().split()) if x1<x2: print((int)(x2-x1)) else: print((int)(x1-x2))
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,304
s667149250
p00376
u991830357
1588764477
Python
Python3
py
Accepted
20
5592
72
a,b=map(int,input().split()) if a<b: t=a a=b b=t print(a-b)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,305
s250475106
p00376
u062640303
1588750176
Python
Python3
py
Accepted
20
5596
126
x1,x2=map(int,input().split()) if x2>x1: print(int(x2-x1)) elif x2==x1: print(int(x2-x1)) else: print(int(x1-x2))
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,306
s283491845
p00376
u511292942
1588749404
Python
Python3
py
Accepted
20
5588
86
x1,x2 = map(int,input().split()) if x1 > x2: print(x1-x2) else: print(x2-x1)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,307
s436158718
p00376
u685887060
1588730312
Python
Python3
py
Accepted
20
5580
58
x1 ,x2 = map(int, input() . split()) print(abs(x1 - x2))
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,308
s714367272
p00376
u593595530
1588699565
Python
Python3
py
Accepted
20
5592
92
x1,x2=map(int,input().split()) if x1>=x2: print(int(x1-x2)) else: print(int(x2-x1))
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,309
s214753338
p00376
u128671689
1588666905
Python
Python3
py
Accepted
20
5596
144
x1,x2=map(int,input().split()) if 0<=x1<=100 and 0<=x2<=100: if x1>=x2: print(x1-x2) else: print(x2-x1) else: pass
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,310
s623330486
p00376
u470391435
1588666237
Python
Python3
py
Accepted
20
5580
57
x1, x2 = map(int,input().split()) print(int(abs(x1-x2)))
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,311
s492861065
p00376
u275486335
1588603631
Python
Python3
py
Accepted
30
5580
52
x,y=map(int,input().split()) z=x-y print(abs(z))
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,312
s933388232
p00376
u895962529
1588586144
Python
Python3
py
Accepted
20
5600
100
x1,x2=(int(x) for x in input().split()) if x2>x1: print(int(x2-x1)) else: print(int(x1-x2))
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,313
s440338586
p00376
u988962397
1588585000
Python
Python3
py
Accepted
20
5588
74
a,b=map(int,input().split()) if a<b: print(b-a) else: print(a-b)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,314
s380996474
p00376
u695386605
1588580593
Python
Python3
py
Accepted
20
5596
137
x_1,x_2 = map(int, input().split()) if x_1 > x_2: print(x_1-x_2) if x_1 < x_2: print(x_2-x_1) if x_1 == x_2: print(x_1-x_2)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,315
s594122158
p00376
u173393391
1588580326
Python
Python3
py
Accepted
20
5580
49
x1,x2=map(int,input().split()) print(abs(x1-x2))
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,316
s588266047
p00376
u138194441
1588574678
Python
Python3
py
Accepted
20
5592
122
a,b = map(int,input().split()) if a>b: print(a-b) else: if a==b: print("0") else: print(b-a)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,317
s481733547
p00376
u288578617
1588560526
Python
Python3
py
Accepted
20
5592
127
a, b=map(int,input().split()) if a > b: x=a-b print(x) elif a < b: y=b-a print(y) else: z=a-b print(z)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,318
s049839426
p00376
u177648086
1588522548
Python
Python3
py
Accepted
20
5588
76
a,b=map(int,input().split()) if a <= b: print(b-a) else: print(a-b)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,319
s622077344
p00376
u926092389
1588513034
Python
Python3
py
Accepted
20
5580
49
x1,x2=map(int,input().split()) print(abs(x2-x1))
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,320
s448722546
p00376
u799752967
1588508249
Python
Python3
py
Accepted
20
5588
72
a,b=map(int,input().split()) if a<b: x=b-a else: x=a-b print(x)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,321
s633691144
p00376
u511744190
1588482582
Python
Python3
py
Accepted
20
5592
84
a,b=map(int,input().split()) if a>b: print(int(a-b)) else: print(int(b-a))
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,322
s562857664
p00376
u834258010
1588475004
Python
Python3
py
Accepted
20
5584
55
x1,x2=map(int,input().split()) c=abs(x2-x1) print(c)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,323
s834839863
p00376
u884758681
1588470416
Python
Python3
py
Accepted
30
5588
81
x1,x2=map(int,input().split()) if x1<x2: print(x2-x1) else: print(x1-x2)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,324
s535259174
p00376
u647921435
1588469293
Python
Python3
py
Accepted
20
5588
81
x1,x2=map(int,input().split()) if x1<x2: print(x2-x1) else: print(x1-x2)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,325
s416583757
p00376
u435414815
1588430338
Python
Python3
py
Accepted
20
5592
70
a,b = input().split() c=int(int(a)-int(b)) if c<0 : c=c*(-1) print(c)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,326
s657161424
p00376
u395654950
1588428559
Python
Python3
py
Accepted
20
5592
126
# coding: utf-8 # Your code here! x1, x2 = map(int, input().split()) if x1 >= x2: print(x1 - x2) else: print(x2 - x1)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,327
s958272187
p00376
u057249340
1588416349
Python
Python3
py
Accepted
20
5596
134
# coding: utf-8 # Your code here! a,b=map(int,input().split()) if(a>b): print(a-b) elif(a<b): print(b-a) else: print("0")
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,328
s086329174
p00376
u240091169
1588379514
Python
Python3
py
Accepted
20
5592
72
a, b= map(int, input().split()) if b > a : a, b = b, a print(a - b)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,329
s052929373
p00376
u014861569
1588360278
Python
Python3
py
Accepted
20
5596
105
x1,x2=input().split() x1=int(x1) x2=int(x2) if x1<=x2: print(int(x2-x1)) else: print(int(x1-x2))
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,330
s917993787
p00376
u946454151
1588077287
Python
Python3
py
Accepted
20
5576
45
a,b=map(int,input().split()) print(abs(a-b))
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,331
s447337408
p00376
u037441960
1587990578
Python
Python3
py
Accepted
20
5580
56
x1, x2 = map(int, input().split()) print(abs(x1 - x2))
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,332
s054773603
p00376
u814278309
1587804999
Python
Python3
py
Accepted
20
5584
53
a,b = map(int,input().split()) x = abs(a-b) print(x)
p00376
<h1>Red Dragonfly</h1>   <p> It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed. </p> <p> When two red dragonflies’ positional information as measured from the end of the w...
20 30
10
19,333