알고리즘/BOJ
[C++] 백준 18108번 1998년생인 내가 태국에서는 2541년생?!
Jay, Lee
2021. 2. 27. 19:51
백준 문제풀이를 통해
이런것도 있나 싶다
역시 불교국가.....
#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
using namespace std;
int main() {
int a;
cin >> a;
cout << a - 543;
return 0;
}