結果

提出番号 310
提出者 oribe
言語 C++
提出日時 2017-07-15 14:29:22
問題名 (24)四則演算
結果 AC
点数 100%

テストケース

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

ソースコード

#include "iostream"
#include "string"
using namespace std;
int main(){
	int m,n;
	cin >> m >> n;
	cout << m+n << endl;
	cout << m-n << endl;
	cout << m*n << endl;
	cout << m/n << endl;


}