fork download
  1. #include<iostream>
  2. using namespace std;
  3. int main(){
  4. long long x;
  5. long long x2;
  6.  
  7. cin>>x>>x2;
  8. cout<<x<<" + "<<x2<<" = "<<x + x2<<endl
  9. <<x<<" * "<<x2<<" = "<<x*x2<<endl
  10. <<x<<" - "<<x2<<" = "<<x - x2 <<endl;
  11. }
Success #stdin #stdout 0.01s 5516KB
stdin
Standard input is empty
stdout
94406184567392 + 140724178762512 = 235130363329904
94406184567392 * 140724178762512 = -3206068993175304704
94406184567392 - 140724178762512 = -46317994195120