H24

#include <bits/stdc++.h>
using namespace std;
int main()
{
    string s;
    unsigned long long n;
    cin>>s>>n;
    if (s=="VT")
        cout<<n*1<<" "<<n*1/3<<" "<<n*1/3<<" "<<n*1/9;
    else if (s=="XN")
        cout<<n*9<<" "<<n*3<<" "<<n*3<<" "<<n*1;
    else if (s=="VN" or s=="XT")
        cout<<n*3<<" "<<n*1<<" "<<n*1<<" "<<n*1/3;
}


Các câu hỏi tương tự
NN
Xem chi tiết
CM
Xem chi tiết
LG
Xem chi tiết
XH
Xem chi tiết
ND
Xem chi tiết
NT
Xem chi tiết
HB
Xem chi tiết
DT
Xem chi tiết
LN
Xem chi tiết