Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. int l, wynik=0;
  8.  
  9. for(int i=1;i<=3;i++)
  10. {
  11. cin>>l;
  12. wynik=wynik+l;
  13.  
  14. }
  15.  
  16. cout<< wynik;
  17.  
  18.  
  19. return 0;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement