結果

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

テストケース

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

ソースコード

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