Advertisement
MeehoweCK

Untitled

Nov 13th, 2020
495
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | None | 0 0
  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <ctime>
  4.  
  5. using namespace std;
  6.  
  7. int draw_a_number(int a, int b)
  8. {
  9.     // write your code here
  10. }
  11.  
  12. int main()
  13. {
  14.     cout << "Please enter two numbers: ";
  15.     int a, b;
  16.     cin >> a >> b;
  17.     cout << draw_a_number(a, b) << endl;
  18.     return 0;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement