fork download
  1. #include <iostream>
  2. #include <string>
  3.  
  4. using namespace std;
  5. int main (){
  6. int I;
  7. long long LL;
  8. char ch ;
  9. float fo ;
  10. double db;
  11. cin >> I >> LL >> ch >> fo >> db ;
  12.  
  13. cout << I << "\n";
  14. cout << LL << "\n";
  15. cout << ch << "\n";
  16. cout << fo << "\n" ;
  17. cout << db <<"\n";
  18.  
  19.  
  20. return 0;
  21. }
Success #stdin #stdout 0.01s 5316KB
stdin
Standard input is empty
stdout
-941403296
94376669958768

3.07907e-41
6.95272e-310