[백준/BOJ] 백준 1001번 : A-B

2020. 6. 21. 00:50알고리즘 문제풀이

https://www.acmicpc.net/problem/1001

 

1001번: A-B

두 정수 A와 B를 입력받은 다음, A-B를 출력하는 프로그램을 작성하시오.

www.acmicpc.net

a와 b를 입력받아 a-b값을 출력한다.

 

코드

#include <iostream>
using namespace std;

int main()
{
	cin.tie(NULL);
	ios_base::sync_with_stdio(false);

	int a, b;
	
	//a와 b를 입력받는다.
	cin >> a >> b;

	cout << a - b;

	return 0;
}