結果

提出番号 576
提出者 ecasdqina
言語 C++
提出日時 2017-07-25 23:39:31
問題名 (24)四則演算
結果 AC
点数 100%

テストケース

テストケース 結果 得点 実行時間 メモリ使用量
1 AC 100% 2ms 8320KB

ソースコード

#include <iostream>
#include <algorithm>
#include <cstdlib>
using namespace std;

int n,m;

int main(){
	cin >> n >> m;
	cout << n+m << endl << n-m << endl << n*m << endl << n/m << endl;
	return 0;
}