How to solve problem "a + b"?
Difference between en1 and en2, changed 174 character(s)
Yesterday my coach give me a hard problem "a + b".↵

In standard input gives two numbers a and b.↵

I must output sum a + b.↵

Please help me with this hard problem
.

UPD:↵
YEE, I KNOW HOW TO SOLVE!↵


~~~~~↵
import time↵

a, b = map(int, input().split())↵
start = time.time()↵
sleep(a)↵
sleep(b)↵
print(time.time() - start)↵
~~~~~↵

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en3 English plagues 2020-04-13 12:46:36 10 Tiny change: 'e.time()\nsleep(a)\nsleep(b)\n' -> 'e.time()\ntime.sleep(a)\ntime.sleep(b)\n'
en2 English plagues 2020-04-13 12:45:17 174
en1 English plagues 2020-04-13 12:15:05 197 Initial revision (published)