Advertisement
ZhilinskiyG

Task 1_07

Feb 11th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.18 KB | None | 0 0
  1. #include "stdafx.h"
  2. #include <iostream>
  3. using namespace std;
  4. int main()
  5. {
  6.     int N;
  7.     cin >> N;
  8.     int M;
  9.     cin >> M;
  10.     int K;
  11.     cin >> K;
  12.     cout << (N*M) / K << endl;
  13.     return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement