fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int temperatura;
  6. temperatura = 39;
  7. if(temperatura > 38){
  8. cout<<"Nie ide do szkoły"<<'\n';
  9. cout<<temperatura<<endl;
  10.  
  11. }
  12. else{
  13. cout<<"go to school fucking dog";
  14. }
  15.  
  16. return 0;
  17. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
Nie ide do szkoły
39