2062:【例1.3】电影票

#include <iostream>
using namespace std;

int main()
{
    int x;
    cin>>x;
    cout<<x<<" "<<x*10;
    return 0;
}