#include <stdio.h> int sum(int a,int b, int c) { int sum1; sum1=a+b+c; return sum1; } int main(void) { int a, b, c; scanf("%d%d%d", &a, &b, &c); printf("%d\n", sum(a, b,c)); return 0; }
posted on 2022-04-12 20:04 王陈锋 阅读(37) 评论(0) 编辑 收藏 举报