fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int apples;
  6. // unsigned weight;
  7. apples=26;
  8. cout << "Anna has "<<apples<<" pounds of apples.\n";
  9. return 0;
  10. }
Success #stdin #stdout 0.01s 5388KB
stdin
Standard input is empty
stdout
Anna has 26 pounds of apples.