#include<iostream>
using namespace std;


int main()
{
 // Declare variable
 float num;

 // Get input
 cout << "Give me a number: ";
 cin >> num;


 // Compute triple and a third of the input
 cout << "Three times input number is " << 3*num
      << "\n";

 cout << "Input number divided by 3 is " << num/3
      << endl;


 return 0;

}