#4516: 簡易加法cpp


michelle51228 (小辰)


#include<iostream>
int main()
{
using namespace std;    
int s,d,p;
p=s+d;        
cout << p << endl;
return 0;
}