POST - A cộng B

Tác giả: flashmt

Ngôn ngữ: Python

import sys
a, b = sys.stdin.readline().split()
print(int(a) + int(b))

Download