fork download
  1. /*
  2. وَلَا تُخْزِنِي يَوْمَ يُبْعَثُونَ•يَوْمَ لَا يَنفَعُ مَالٌ وَلَا بَنُونَ•إِلَّا مَنْ أَتَى اللَّهَ بِقَلْبٍ سَلِيم❤
  3. */
  4. #include <bits/stdc++.h>
  5. #define ll long long
  6. #define el endl
  7. using namespace std;
  8. void saf_sofa()
  9. {
  10. if (fopen("in.txt", "r"))
  11. {
  12. freopen("in.txt", "r", stdin);
  13. freopen("out.txt", "w", stdout);
  14. }
  15. ios_base::sync_with_stdio(false);
  16. cin.tie(NULL);
  17. }
  18. int dx[] = { 0, 0, 1, -1, 1, 1, -1, -1 };
  19. int dy[] = { -1, 1, 0, 0, -1, 1, 1, -1 };
  20.  
  21.  
  22. void solve()
  23. {
  24. ll n;
  25. cin >> n;
  26. cout << n * n;
  27. }
  28. int main()
  29. {
  30. saf_sofa();
  31. int t_ = 1;
  32. // cin >> t_;
  33. while (t_--)
  34. {
  35. solve();
  36. }
  37. }
  38. /*
  39.  
  40. وَليتَ الذي بَيني وبينَك عامِرٌ وبَيني وبَينَ العَـٰالمينَ خرَابُ
  41.  
  42. */
Success #stdin #stdout 0.01s 5324KB
stdin
6
stdout
36