summaryrefslogtreecommitdiffstats
path: root/problems/hellow/hellow.cpp
blob: f1255ce8dfeeb1ec7cfc1afbac564b2f3a1a8876 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <iostream>

using namespace std;

int main()
{
    int n;
    cin >> n;
    cout << 3 * n << endl;
    return 0;
}