Advertisement
rotti321

model c++

May 11th, 2021
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #include <iostream>
  2. #include <fstream>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. ifstream cin("atestat.in");
  8. ofstream cout("atestat.out");
  9. int n,a,b;
  10. cin>>n>>a>>b;
  11. cout<<a/b;
  12. return 0;
  13. }
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement