早教吧 育儿知识 作业答案 考试题库 百科 知识分享

背景Background为了forbeginngers,特设此题,描述Description输入两个自然数,输出他们的和输入格式InputFormat两个自然数x和y(0

题目详情
背景 Background 为了for beginngers,特设此题,
描述 Description 输入两个自然数,输出他们的和
输入格式 Input Format 两个自然数x和y(0
▼优质解答
答案和解析
#include void main(){ int a,b; scanf("%d %d",&a,&b); printf("%d\n",a+b);}