Advertisement
Niloy007

User Input

Jun 14th, 2020
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.33 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4.  
  5. int main() {
  6. #ifdef Niloy
  7.     read("input.txt");
  8.     write("output.txt");
  9. #endif
  10.  
  11.     int first, last;
  12.     scanf("%d%d", &first);
  13.     scanf("%d", &last);
  14.     printf("First: %d \nLast: %d\n", first, last);
  15.  
  16.     cerr << "time = " << (clock() / CLOCKS_PER_SEC) << " sec" << '\n';
  17.     return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement