bzoj 1000: A+B Problem

刚学编程就会的题,如果你有闲情逸致可以用网络流打

1 #include<cstdio>
2 #include<iostream>
3 int main()
4 {
5     int a,b;
6     scanf("%d%d",&a,&b);
7     printf("%d",a+b);
8     return 0;
9 }
原文地址:https://www.cnblogs.com/xydddd/p/5223648.html