Update solution for A-B w/ id 5253141

Time: 64ms
MemUsage: 29160KB
This commit is contained in:
2024-08-29 16:24:29 +09:00
parent 36be6c6486
commit ad65eff5bd

View File

@@ -0,0 +1,3 @@
str = input()
A,B = tuple([int(i) for i in str.split(" ")])
print(A-B)