結果

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

テストケース

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

ソースコード

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