| 提出番号 | 333 |
|---|---|
| 提出者 | hystyl243 |
| 言語 | C++ |
| 提出日時 | 2017-07-15 14:54:02 |
| 問題名 | (24)四則演算 |
| 結果 | AC |
| 点数 | 100% |
| テストケース | 結果 | 得点 | 実行時間 | メモリ使用量 |
|---|---|---|---|---|
| 1 | AC | 100% | 1ms | 8336KB |
#include "iostream"
#include "string"
using namespace std;
int main(){
int a,b;
cin >> a >> b;
cout << a+b << endl;
cout << a-b << endl;
cout << a*b << endl;
cout << a/b << endl;
}