衛星工廠的概念#include <iostream>using namespace std;
int add(int no1, int no2){ return no1+no2;}
int main(){ int a,b; cin>>a>>b; cout<<add(a,b);}