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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s563574799 | p00375 | u350155409 | 1573305408 | Python | Python3 | py | Accepted | 20 | 5576 | 35 | n = int(input())
print((n-30)//2)
| p00375 | <h1>Celsius/Fahrenheit</h1>
<p>
In Japan, temperature is usually expressed using the Celsius (℃) scale. In America, they used the Fahrenheit (℉) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered... | 68
| 19
| 19,134 |
s724137309 | p00375 | u803862921 | 1572273661 | Python | Python3 | py | Accepted | 20 | 5576 | 30 | print( (int(input())-30)// 2)
| p00375 | <h1>Celsius/Fahrenheit</h1>
<p>
In Japan, temperature is usually expressed using the Celsius (℃) scale. In America, they used the Fahrenheit (℉) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered... | 68
| 19
| 19,135 |
s825434105 | p00375 | u447421429 | 1571883915 | Python | Python3 | py | Accepted | 20 | 5572 | 28 | print((int(input())-30)//2)
| p00375 | <h1>Celsius/Fahrenheit</h1>
<p>
In Japan, temperature is usually expressed using the Celsius (℃) scale. In America, they used the Fahrenheit (℉) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered... | 68
| 19
| 19,136 |
s839676375 | p00375 | u183700122 | 1568121030 | Python | Python3 | py | Accepted | 20 | 5572 | 28 | print((int(input())-30)//2)
| p00375 | <h1>Celsius/Fahrenheit</h1>
<p>
In Japan, temperature is usually expressed using the Celsius (℃) scale. In America, they used the Fahrenheit (℉) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered... | 68
| 19
| 19,137 |
s098191385 | p00375 | u885163055 | 1565885485 | Python | Python3 | py | Accepted | 20 | 5588 | 96 |
def solve():
print(int((int(input()) - 30) / 2))
if __name__ == '__main__':
solve()
| p00375 | <h1>Celsius/Fahrenheit</h1>
<p>
In Japan, temperature is usually expressed using the Celsius (℃) scale. In America, they used the Fahrenheit (℉) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered... | 68
| 19
| 19,138 |
s770178330 | p00375 | u784856415 | 1565091041 | Python | Python3 | py | Accepted | 20 | 5576 | 28 | print((int(input())-30)//2)
| p00375 | <h1>Celsius/Fahrenheit</h1>
<p>
In Japan, temperature is usually expressed using the Celsius (℃) scale. In America, they used the Fahrenheit (℉) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered... | 68
| 19
| 19,139 |
s954658635 | p00375 | u108130680 | 1564929862 | Python | Python3 | py | Accepted | 20 | 5576 | 28 | print((int(input())-30)//2)
| p00375 | <h1>Celsius/Fahrenheit</h1>
<p>
In Japan, temperature is usually expressed using the Celsius (℃) scale. In America, they used the Fahrenheit (℉) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered... | 68
| 19
| 19,140 |
s288596146 | p00375 | u433250944 | 1564929348 | Python | Python3 | py | Accepted | 20 | 5580 | 44 | F = int(input())
C = (F-30)/2
print(int(C))
| p00375 | <h1>Celsius/Fahrenheit</h1>
<p>
In Japan, temperature is usually expressed using the Celsius (℃) scale. In America, they used the Fahrenheit (℉) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered... | 68
| 19
| 19,141 |
s703201424 | p00375 | u939401108 | 1564924270 | Python | Python3 | py | Accepted | 20 | 5572 | 44 | F = int(input())
C = (F - 30) // 2
print(C)
| p00375 | <h1>Celsius/Fahrenheit</h1>
<p>
In Japan, temperature is usually expressed using the Celsius (℃) scale. In America, they used the Fahrenheit (℉) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered... | 68
| 19
| 19,142 |
s306969974 | p00375 | u800408401 | 1564848047 | Python | Python3 | py | Accepted | 20 | 5576 | 34 | a = int(input())
print((a-30)//2)
| p00375 | <h1>Celsius/Fahrenheit</h1>
<p>
In Japan, temperature is usually expressed using the Celsius (℃) scale. In America, they used the Fahrenheit (℉) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered... | 68
| 19
| 19,143 |
s765747834 | p00375 | u312033355 | 1564725971 | Python | Python3 | py | Accepted | 20 | 5576 | 36 | f=int(input())
C=(f-30)//2
print(C)
| p00375 | <h1>Celsius/Fahrenheit</h1>
<p>
In Japan, temperature is usually expressed using the Celsius (℃) scale. In America, they used the Fahrenheit (℉) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered... | 68
| 19
| 19,144 |
s759529493 | p00375 | u726971073 | 1563894497 | Python | Python3 | py | Accepted | 20 | 5576 | 28 | print((int(input())-30)//2)
| p00375 | <h1>Celsius/Fahrenheit</h1>
<p>
In Japan, temperature is usually expressed using the Celsius (℃) scale. In America, they used the Fahrenheit (℉) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered... | 68
| 19
| 19,145 |
s714227138 | p00375 | u051789695 | 1562376192 | Python | Python3 | py | Accepted | 20 | 5572 | 28 | print((int(input())-30)//2)
| p00375 | <h1>Celsius/Fahrenheit</h1>
<p>
In Japan, temperature is usually expressed using the Celsius (℃) scale. In America, they used the Fahrenheit (℉) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered... | 68
| 19
| 19,146 |
s461586424 | p00375 | u495152850 | 1562061877 | Python | Python3 | py | Accepted | 20 | 5572 | 40 | F = int(input())
T = (F-30)//2
print(T)
| p00375 | <h1>Celsius/Fahrenheit</h1>
<p>
In Japan, temperature is usually expressed using the Celsius (℃) scale. In America, they used the Fahrenheit (℉) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered... | 68
| 19
| 19,147 |
s104391219 | p00375 | u260980560 | 1561879625 | Python | Python3 | py | Accepted | 20 | 5576 | 28 | print((int(input())-30)//2)
| p00375 | <h1>Celsius/Fahrenheit</h1>
<p>
In Japan, temperature is usually expressed using the Celsius (℃) scale. In America, they used the Fahrenheit (℉) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered... | 68
| 19
| 19,148 |
s255608118 | p00375 | u272180444 | 1561371978 | Python | Python3 | py | Accepted | 20 | 5652 | 186 | #! /usr/bin/env python
# -*- coding: utf-8 -*-
import sys
import math
def main():
f = int(input())
c = int((f - 30) / 2)
print(c)
if __name__ == '__main__':
main()
| p00375 | <h1>Celsius/Fahrenheit</h1>
<p>
In Japan, temperature is usually expressed using the Celsius (℃) scale. In America, they used the Fahrenheit (℉) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered... | 68
| 19
| 19,149 |
s343559024 | p00375 | u505651850 | 1559976715 | Python | Python3 | py | Accepted | 20 | 5576 | 28 | print((int(input())-30)//2)
| p00375 | <h1>Celsius/Fahrenheit</h1>
<p>
In Japan, temperature is usually expressed using the Celsius (℃) scale. In America, they used the Fahrenheit (℉) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered... | 68
| 19
| 19,150 |
s021690987 | p00375 | u043254318 | 1558546442 | Python | Python3 | py | Accepted | 20 | 5572 | 35 | F = int(input())
print((F-30)//2)
| p00375 | <h1>Celsius/Fahrenheit</h1>
<p>
In Japan, temperature is usually expressed using the Celsius (℃) scale. In America, they used the Fahrenheit (℉) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered... | 68
| 19
| 19,151 |
s721226695 | p00375 | u610816226 | 1557467188 | Python | Python3 | py | Accepted | 20 | 5572 | 38 | x = int(input())
print(int((x-30)/2))
| p00375 | <h1>Celsius/Fahrenheit</h1>
<p>
In Japan, temperature is usually expressed using the Celsius (℃) scale. In America, they used the Fahrenheit (℉) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered... | 68
| 19
| 19,152 |
s444420240 | p00375 | u226572569 | 1557135393 | Python | Python3 | py | Accepted | 20 | 5576 | 38 | F = int(input())
print((F - 30) // 2)
| p00375 | <h1>Celsius/Fahrenheit</h1>
<p>
In Japan, temperature is usually expressed using the Celsius (℃) scale. In America, they used the Fahrenheit (℉) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered... | 68
| 19
| 19,153 |
s848722044 | p00375 | u179120849 | 1555434346 | Python | Python3 | py | Accepted | 20 | 5576 | 34 | print(int((int(input())-30) / 2))
| p00375 | <h1>Celsius/Fahrenheit</h1>
<p>
In Japan, temperature is usually expressed using the Celsius (℃) scale. In America, they used the Fahrenheit (℉) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered... | 68
| 19
| 19,154 |
s887642339 | p00375 | u006424459 | 1555324804 | Python | Python3 | py | Accepted | 20 | 5576 | 33 | F=int(input())
print((F-30)//2)
| p00375 | <h1>Celsius/Fahrenheit</h1>
<p>
In Japan, temperature is usually expressed using the Celsius (℃) scale. In America, they used the Fahrenheit (℉) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered... | 68
| 19
| 19,155 |
s574962265 | p00375 | u313117499 | 1551797611 | Python | Python3 | py | Accepted | 20 | 5572 | 38 | F = int(input())
print((F - 30) // 2)
| p00375 | <h1>Celsius/Fahrenheit</h1>
<p>
In Japan, temperature is usually expressed using the Celsius (℃) scale. In America, they used the Fahrenheit (℉) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered... | 68
| 19
| 19,156 |
s610221510 | p00375 | u604920879 | 1550725307 | Python | Python3 | py | Accepted | 20 | 5576 | 39 | f = int(input())
print((f - 30) // 2)
| p00375 | <h1>Celsius/Fahrenheit</h1>
<p>
In Japan, temperature is usually expressed using the Celsius (℃) scale. In America, they used the Fahrenheit (℉) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered... | 68
| 19
| 19,157 |
s397126311 | p00375 | u539753516 | 1547991590 | Python | Python3 | py | Accepted | 20 | 5576 | 26 | print(int(input())//2-15)
| p00375 | <h1>Celsius/Fahrenheit</h1>
<p>
In Japan, temperature is usually expressed using the Celsius (℃) scale. In America, they used the Fahrenheit (℉) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered... | 68
| 19
| 19,158 |
s096538819 | p00375 | u435226340 | 1546848935 | Python | Python3 | py | Accepted | 20 | 5576 | 34 | F = int(input())
print((F-30)//2)
| p00375 | <h1>Celsius/Fahrenheit</h1>
<p>
In Japan, temperature is usually expressed using the Celsius (℃) scale. In America, they used the Fahrenheit (℉) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered... | 68
| 19
| 19,159 |
s485815768 | p00375 | u847761085 | 1543809302 | Python | Python3 | py | Accepted | 20 | 5584 | 53 | # coding: utf-8
print(int((int(input()) - 30) / 2))
| p00375 | <h1>Celsius/Fahrenheit</h1>
<p>
In Japan, temperature is usually expressed using the Celsius (℃) scale. In America, they used the Fahrenheit (℉) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered... | 68
| 19
| 19,160 |
s678734226 | p00375 | u352394527 | 1543728922 | Python | Python3 | py | Accepted | 20 | 5576 | 28 | print((int(input())-30)//2)
| p00375 | <h1>Celsius/Fahrenheit</h1>
<p>
In Japan, temperature is usually expressed using the Celsius (℃) scale. In America, they used the Fahrenheit (℉) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered... | 68
| 19
| 19,161 |
s026874915 | p00375 | u717526540 | 1542872770 | Python | Python3 | py | Accepted | 20 | 5572 | 44 | f = int(input())
c = (f - 30) // 2
print(c)
| p00375 | <h1>Celsius/Fahrenheit</h1>
<p>
In Japan, temperature is usually expressed using the Celsius (℃) scale. In America, they used the Fahrenheit (℉) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered... | 68
| 19
| 19,162 |
s175519960 | p00375 | u018863373 | 1542850118 | Python | Python3 | py | Accepted | 20 | 5576 | 64 | kashi = int(input())
sesshi = int((kashi - 30)/2)
print(sesshi)
| p00375 | <h1>Celsius/Fahrenheit</h1>
<p>
In Japan, temperature is usually expressed using the Celsius (℃) scale. In America, they used the Fahrenheit (℉) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered... | 68
| 19
| 19,163 |
s009915282 | p00375 | u689047545 | 1542238834 | Python | Python3 | py | Accepted | 20 | 5576 | 34 | f = int(input())
print((f-30)//2)
| p00375 | <h1>Celsius/Fahrenheit</h1>
<p>
In Japan, temperature is usually expressed using the Celsius (℃) scale. In America, they used the Fahrenheit (℉) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered... | 68
| 19
| 19,164 |
s869657157 | p00375 | u991869837 | 1542118372 | Python | Python3 | py | Accepted | 20 | 5580 | 48 | F = int(input())
C = ((F - 30) // 2)
print(C)
| p00375 | <h1>Celsius/Fahrenheit</h1>
<p>
In Japan, temperature is usually expressed using the Celsius (℃) scale. In America, they used the Fahrenheit (℉) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered... | 68
| 19
| 19,165 |
s671512185 | p00375 | u231562319 | 1539365003 | Python | Python3 | py | Accepted | 20 | 5576 | 31 | print( (int(input())-30)//2 )
| p00375 | <h1>Celsius/Fahrenheit</h1>
<p>
In Japan, temperature is usually expressed using the Celsius (℃) scale. In America, they used the Fahrenheit (℉) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered... | 68
| 19
| 19,166 |
s513237773 | p00375 | u737311644 | 1538961987 | Python | Python3 | py | Accepted | 20 | 5576 | 42 | f=int(input())
kotae=f-30
print(kotae//2)
| p00375 | <h1>Celsius/Fahrenheit</h1>
<p>
In Japan, temperature is usually expressed using the Celsius (℃) scale. In America, they used the Fahrenheit (℉) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered... | 68
| 19
| 19,167 |
s669870338 | p00375 | u525366883 | 1538018243 | Python | Python3 | py | Accepted | 20 | 5576 | 28 | print((int(input())-30)//2)
| p00375 | <h1>Celsius/Fahrenheit</h1>
<p>
In Japan, temperature is usually expressed using the Celsius (℃) scale. In America, they used the Fahrenheit (℉) scale instead. $20$ degrees Celsius is roughly equal to $68$ degrees Fahrenheit. A phrase such as "Today’s temperature is $68$ degrees" is commonly encountered... | 68
| 19
| 19,168 |
s733368035 | p00376 | u435226340 | 1546156486 | Python | Python3 | py | Accepted | 20 | 5580 | 52 | 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,169 |
s402526771 | p00376 | u126478680 | 1546511089 | Python | Python3 | py | Accepted | 20 | 5588 | 91 | # coding: utf-8
x1, x2 = list(map(int, input().split(' ')))
dist = abs(x1-x2)
print(dist)
| 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,170 |
s920107746 | p00376 | u990228206 | 1551413498 | Python | Python3 | py | Accepted | 20 | 5584 | 51 | a,b=list(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,171 |
s743658396 | p00376 | u069727578 | 1551529909 | 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,172 |
s046853361 | p00376 | u888548672 | 1555985431 | 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,173 |
s035576452 | p00376 | u814278309 | 1559139813 | 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,174 |
s213884436 | p00376 | u365131854 | 1597749750 | 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,175 |
s312817301 | p00376 | u430159711 | 1597654950 | Python | Python3 | py | Accepted | 20 | 5596 | 60 |
a,b=(int(x) for x in input().split())
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,176 |
s849592847 | p00376 | u342624490 | 1596972734 | Python | Python3 | py | Accepted | 20 | 5592 | 97 | 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,177 |
s831813897 | p00376 | u729823147 | 1596701829 | Python | Python3 | py | Accepted | 20 | 5592 | 99 | a,b=map(int,input().split())
if a-b==0:
print(0)
elif 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,178 |
s138336923 | p00376 | u250040203 | 1596438891 | Python | Python3 | py | Accepted | 20 | 5596 | 96 | a,b = input().split()
a = int(a)
b = int(b)
if a<b:
c = b-a
else:
c = a-b
print(int(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,179 |
s839495919 | p00376 | u476754031 | 1596393460 | Python | Python3 | py | Accepted | 20 | 5588 | 73 | 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,180 |
s325346334 | p00376 | u885258138 | 1596175682 | Python | Python3 | py | Accepted | 20 | 5592 | 90 | 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,181 |
s305646685 | p00376 | u878828646 | 1596096876 | Python | Python3 | py | Accepted | 20 | 5596 | 58 | a,b=(int(x) for x in input().split())
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,182 |
s671312409 | p00376 | u326077502 | 1595895776 | 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,183 |
s065230860 | p00376 | u286298310 | 1595409990 | Python | Python3 | py | Accepted | 20 | 5584 | 49 | 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,184 |
s097461295 | p00376 | u659772967 | 1595398249 | Python | Python3 | py | Accepted | 20 | 5596 | 87 | a,b=map(int,input().split())
if a>b:print(a-b)
elif a<b:print(b-a)
elif a==b: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,185 |
s367616811 | p00376 | u782152619 | 1594688162 | Python | Python3 | py | Accepted | 20 | 5580 | 53 | 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,186 |
s137558507 | p00376 | u548184870 | 1594013970 | 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,187 |
s633453459 | p00376 | u940828136 | 1592286036 | Python | Python3 | py | Accepted | 20 | 5588 | 69 | 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,188 |
s903476445 | p00376 | u930644970 | 1592282560 | 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,189 |
s386263168 | p00376 | u179629761 | 1592273317 | 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,190 |
s928636396 | p00376 | u896809383 | 1592203737 | Python | Python3 | py | Accepted | 20 | 5580 | 54 | x_1,x_2=map(int,input().split())
print(abs(x_2-x_1))
| 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,191 |
s416733898 | p00376 | u596129030 | 1591600995 | Python | Python3 | py | Accepted | 20 | 5580 | 46 | 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,192 |
s507929027 | p00376 | u632910712 | 1591593583 | Python | Python3 | py | Accepted | 20 | 5580 | 55 | x1,x2=map(int,input().split())
y= abs(x1-x2)
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,193 |
s688850213 | p00376 | u662362547 | 1591061823 | Python | Python3 | py | Accepted | 20 | 5596 | 111 | x1,x2=map(int,input().split())
if x1<x2:
print(x2-x1)
if x1>x2:
print(x1-x2)
if x1==x2:
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,194 |
s824669712 | p00376 | u762022668 | 1590986840 | Python | Python3 | py | Accepted | 20 | 5580 | 47 | 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,195 |
s606158743 | p00376 | u293306835 | 1590456122 | Python | Python3 | py | Accepted | 20 | 5576 | 55 | 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,196 |
s832458608 | p00376 | u573698742 | 1590386058 | Python | Python3 | py | Accepted | 20 | 5592 | 88 | x,y=map(int, input().split())
if x < y :
print(int(y-x))
else :
print(int(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,197 |
s030537724 | p00376 | u586171604 | 1590385270 | Python | Python3 | py | Accepted | 20 | 5580 | 53 | 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,198 |
s268838403 | p00376 | u925445050 | 1590383943 | Python | Python3 | py | Accepted | 20 | 5584 | 54 | x1,x2=map(int,input().split())
a=abs(x1-x2)
print(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,199 |
s931206240 | p00376 | u826807985 | 1590383210 | Python | Python3 | py | Accepted | 20 | 5588 | 73 | 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,200 |
s806500476 | p00376 | u189528630 | 1590372404 | 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,201 |
s539929802 | p00376 | u329155726 | 1590248186 | Python | Python3 | py | Accepted | 20 | 5576 | 49 | 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,202 |
s990593417 | p00376 | u251716708 | 1590118829 | Python | Python3 | py | Accepted | 20 | 5600 | 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(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,203 |
s755862456 | p00376 | u905454643 | 1590051785 | Python | Python3 | py | Accepted | 20 | 5660 | 72 | import math
x,y=map(int,input().split())
m=int(math.fabs(x-y))
print(m)
| 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,204 |
s692511552 | p00376 | u924938296 | 1590046357 | Python | Python3 | py | Accepted | 20 | 5580 | 59 | x1,x2 = map(int,input().split())
y = abs(x1 - x2)
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,205 |
s930217806 | p00376 | u100874602 | 1589983929 | 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,206 |
s165968318 | p00376 | u852547520 | 1589941413 | Python | Python3 | py | Accepted | 20 | 5588 | 84 | 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,207 |
s491757276 | p00376 | u529477970 | 1589899545 | Python | Python3 | py | Accepted | 20 | 5600 | 111 | a,b=(int(x) for x in input().split())
if 0<=a<=b<=100:
print(b-a)
elif 0<=b<=a<=100:
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,208 |
s424421477 | p00376 | u257570657 | 1589864761 | Python | Python3 | py | Accepted | 20 | 5588 | 102 | #!/usr/bin/python3
# coding: utf-8
x,y = map(int,input().split())
s = x-y
if x<y:
s = -s
print(s)
| 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,209 |
s193967703 | p00376 | u799076010 | 1589852106 | 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,210 |
s064068914 | p00376 | u965173609 | 1589852032 | 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,211 |
s839543058 | p00376 | u680047335 | 1589849904 | Python | Python3 | py | Accepted | 20 | 5596 | 97 | s = input().split( )
a = int(s[0])
b = int(s[1])
if a-b < 0:
print(-(a-b))
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,212 |
s877535961 | p00376 | u333382219 | 1589848572 | Python | Python3 | py | Accepted | 20 | 5580 | 51 | 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,213 |
s471111501 | p00376 | u221550784 | 1589848571 | Python | Python3 | py | Accepted | 20 | 5584 | 54 | a,b=map(int,input().split())
x=int(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,214 |
s574337906 | p00376 | u361745995 | 1589848521 | Python | Python3 | py | Accepted | 20 | 5588 | 81 | a,b=map(int,input().split())
if b>a:
s=b - a
else:
s=a - b
print(int(s))
| 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,215 |
s661076876 | p00376 | u633358233 | 1589847307 | Python | Python3 | py | Accepted | 20 | 5584 | 54 | 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,216 |
s330934813 | p00376 | u350481745 | 1589846425 | Python | Python3 | py | Accepted | 30 | 5592 | 83 | 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,217 |
s552806420 | p00376 | u497248335 | 1589816250 | 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,218 |
s374516094 | p00376 | u709176169 | 1589811461 | Python | Python3 | py | Accepted | 20 | 5588 | 82 | 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,219 |
s113441958 | p00376 | u869208015 | 1589790821 | Python | Python3 | py | Accepted | 20 | 5580 | 53 | x_1,x_2=map(int,input().split())
print(abs(x_2-x_1))
| 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,220 |
s555009522 | p00376 | u644959375 | 1589789180 | Python | Python3 | py | Accepted | 20 | 5580 | 55 | 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,221 |
s889007275 | p00376 | u661628543 | 1589789084 | Python | Python3 | py | Accepted | 20 | 5596 | 126 | x1,x2=map(int,input().split())
if x2 > x1:
print(int(x2 - x1))
elif x1 > x2:
print(int(x1 - x2))
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,222 |
s273110398 | p00376 | u920513163 | 1589788337 | Python | Python3 | py | Accepted | 20 | 5592 | 88 | a,b=map(int,input().split())
if a>=b:
print(int(a-b))
elif b>a:
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,223 |
s685063569 | p00376 | u755480664 | 1589787263 | 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,224 |
s438976538 | p00376 | u037263780 | 1589787042 | Python | Python3 | py | Accepted | 20 | 5588 | 73 | 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,225 |
s147057066 | p00376 | u940983140 | 1589786319 | 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,226 |
s686733061 | p00376 | u528181593 | 1589785778 | 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,227 |
s076275435 | p00376 | u319403848 | 1589785162 | Python | Python3 | py | Accepted | 20 | 5660 | 73 | import math
x1, x2=map(int,input().split())
print(int(math.fabs(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,228 |
s223166330 | p00376 | u056829778 | 1589783314 | Python | Python3 | py | Accepted | 20 | 5584 | 58 | x1,x2 = list(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,229 |
s363613201 | p00376 | u635020217 | 1589781467 | Python | Python3 | py | Accepted | 20 | 5588 | 86 | # coding: utf-8
# Your code here!
a,b=map(int,input().split())
y = abs(a-b)
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,230 |
s996005565 | p00376 | u673183698 | 1589781094 | Python | Python3 | py | Accepted | 20 | 5584 | 63 | 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,231 |
s738949218 | p00376 | u574841425 | 1589780737 | 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,232 |
s384469415 | p00376 | u278236319 | 1589779627 | 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,233 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.