Advertisement
yeskendir_sultanov

L2 - B

Mar 27th, 2024
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.16 KB | Source Code | 0 0
  1. #include <cmath>
  2. #include <iostream>
  3.  
  4. using namespace std;
  5.  
  6. int main() {
  7.     long long a, b;
  8.     cin >> a >> b;
  9.     cout << (a + b) * (a + b);
  10.     return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement