算法提高 2-2整数求和

资源限制
时间限制:1.0s   内存限制:256.0MB
  基于例子3 ,写一个程序,实现整数求和:
样例输入
3 4
样例输出
7
#include<stdio.h>
int main(){
    
    
	int a,b;
	scanf("%d%d",&a,&b);
	printf("%d\n",a+b);
	return 0;
}

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/mjh1667002013/article/details/115215753