fork download
  1. #include <bits/stdc++.h>
  2. #define ull unsigned long long
  3. #define ll long long
  4. #define el endl
  5. #define nl '\n'
  6. using namespace std;
  7.  
  8. void input()
  9. {
  10. if (fopen("in.txt", "r"))
  11. {
  12. freopen("in.txt", "r", stdin);
  13. freopen("out.txt", "w", stdout);
  14. }
  15. }
  16.  
  17. int area(int x, int y)
  18. {
  19. return x * y;
  20. }
  21. int main()
  22. {
  23. input();
  24. int l, w;
  25. cin >> l >> w;
  26.  
  27. cout << area(l, w) << nl;
  28. return 0;
  29. }
  30. // 1
Success #stdin #stdout 0s 5312KB
stdin
Standard input is empty
stdout
779936960