A+B Problem Description Calculate a+b Input Two integer a,b (0<=a,b<=10) Output Output a+b Sample Input 1 2 Sample Output 3 解答 #include <cstdio> int main() { int a, b; scanf("%d%d", &a, &b); printf("%dn", a + b); return 0; } 赞微海报分享
近期评论