Loading...
Submission
Id When Author Problem Language CPU Memory Verdict
17824 2024-04-24 00:04:12 lauhemahfus A Plus B Python 3 19 ms 8456 kb Runtime Error - 1
Test Cases
CPU Memory Verdict
1 19 ms 8456 kb Runtime Error
2 - - Skipped
3 - - Skipped
4 - - Skipped
5 - - Skipped
6 - - Skipped
Source Code
program.py
Download
  1. def get_ints:
  2. return map(int, sys.stdin.readline().strip().split())
  3.  
  4. a,b = get_ints()
  5. print(a+b)