← Back to List

15894번: 수학은 체육과목 입니다 ↗

Solutions

C++14
108 B | 108 chars
#include <iostream>
using namespace std;
unsigned long long int N;
int main()
{
    cin>>N;
    cout<<4*N;
}