fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. float x;
  6. cout<<"Podaj liczbe koralikow"<<endl;
  7. cin>>x;
  8. cout<<x*x <<endl;
  9.  
  10. return 0;
  11. }
Success #stdin #stdout 0s 5272KB
stdin
4
stdout
Podaj liczbe koralikow
16