본문 바로가기

Algorithm

백준(baekjoon)(BaekJoon)코딩 1001번:A-B 답

반응형
1
2
3
4
5
6
7
#include <iostream>
using namespace std;
int main(){
    int A,B;
    cin>>A>>B;
    cout<<A-B;
}
cs