#include <bits/stdc++.h>
using namespace std;
long long n;
int main(void) {
ios::sync_with_stdio(0);
cin.tie(0);
cin >> n;
cout << 4 * n;
}
'백준 문제풀이' 카테고리의 다른 글
백준 2960 - C++ (0) | 2022.05.17 |
---|---|
백준 4796 - C++ (0) | 2022.05.17 |
백준 1700번 - C++ (0) | 2022.05.17 |
백준 1744번 - C++ (0) | 2022.05.17 |
백준 11501번 - C++ (0) | 2022.05.17 |