Advertisement
shawon_majid

HBD

Jun 5th, 2020
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.53 KB | None | 0 0
  1. //Bismillahir Rahman-ir Rahim
  2. #include <bits/stdc++.h>
  3. using namespace std;
  4. #define MAX 32000
  5. #define PI acos(-1)
  6. #define debug(x) cout << '>' << #x << " : " << x << endl;
  7. #define all(c) c.begin(), c.end()
  8. //#define m (pow(10, 9)+7)
  9. typedef unsigned long long ull;
  10. typedef long long ll;
  11.  
  12.  
  13.  
  14.  
  15.  
  16. int main()
  17. {
  18.     //freopen("input.txt", "r", stdin);
  19.     //freopen("output.txt", "w", stdout);
  20.     ifstream theFile("hap.txt");
  21.  
  22.     string name;
  23.  
  24.     while(getline(theFile, name)){
  25.         cout << name << endl;
  26.     }
  27.  
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement