描述 Description
对于 100% 的数据,保证 |A| , |B| 不会超过 10(107)
输入格式 InputFormat
输入 A,B
输出格式 OutputFormat
输出 A+B。
样例输入 SampleInput
1 1
样例输出 SampleOutput
2
%>_<% 懒得写高精度了。。。另外 python 好像很慢。。。
#!/usr/bin/env python
a,b=map(int,raw_input().split())
print(a+b)