1 2 3 4 5 6 7 8 9 10 | #include <stdio.h> int main(void) { int a, b; scanf("%d %d", &a, &b); printf("%d\n", a-b); return 0; } | cs |
'C & C++ > Baekjoon' 카테고리의 다른 글
백준 1110 - 더하기 사이클 (0) | 2017.12.27 |
---|---|
백준 1065 - 한수 (0) | 2017.12.27 |
백준 1008 - A/B (0) | 2017.12.27 |
백준 1003 - 피보나치 함수 (0) | 2017.12.27 |
백준 1000 - A+B (0) | 2017.12.27 |