fork download
  1. #include <cstdio>
  2. using namespace std;
  3.  
  4. int main() {
  5. short int a,b,c;
  6. scanf("%hd %hd %hd", &a, &b, &c);
  7. printf("%hd %hd %hd", a, b, c);
  8. return 0;
  9. }
Success #stdin #stdout 0s 3300KB
stdin
1 2 3
stdout
1 2 3