返回列表 發帖
#include <iostream>
using namespace std;
int main(void){
int a,b;
while(cin>>a>>b){
   cout <<a+b<<endl;  
       cout <<a-b<<endl;
       cout <<a/b<<endl;
       cout <<a*b<<endl;
         
          }
return 0;
}
人平

TOP

返回列表