1938. 아주 간단한 계산기

호찌 Hozzi ·2022년 5월 12일
0

알고리즘

목록 보기
5/18
#include<iostream>

using namespace std;

int main(int argc, char** argv)
{
	int a;
	int b;
    
	cin>>a>>b;
	
    cout << a+b << endl;
    cout << a-b << endl;
    cout << a*b << endl;
    cout << a/b << endl;

	return 0;
}
profile
코린이

0개의 댓글