Mitpro
-
Rating
206
Bài đã giải
75899
Tổng điểm
-
Hạng Rating
664
Hạng điểm
0
Đóng góp
Please help me solve this:
Given \(2\) integers \(a\) and \(b\), print \(a + b\)
\(1 \leq a, b \leq 10^{{10}^{1000}}\)
Why does this code give Value Error 🙁
Python
a, b = map(int, input().split())
print(a + b)