1
0
forked from newde/homework

镇乃天子

我是无惨
This commit is contained in:
2026-04-18 05:50:37 -04:00
parent f9a50b3be6
commit 91da12510e
4 changed files with 74 additions and 0 deletions

18
666/zhu.cpp Normal file
View File

@@ -0,0 +1,18 @@
#include<iostream>
using namespace std;
int myadd(int x,int y);
int main(){
int a,b,c;
cin>>a >>b;
c=myadd(a,b);
cout << c << endl;
return 0;
}