Advertisement
Guest User

Untitled

a guest
Oct 9th, 2015
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.63 KB | None | 0 0
  1. #include <cmath>
  2. #include <cstdio>
  3. #include <vector>
  4. #include <iostream>
  5. #include <algorithm>
  6. using namespace std;
  7.  
  8.  
  9. int main() {
  10.     /* Enter your code here. Read input from STDIN. Print output to STDOUT */
  11.     long int t;
  12.     long int n;
  13.     scanf("lli",&t);
  14.     long int tcounter = 1;
  15.     cout<<t;
  16.     /*
  17.     while(tcounter<t){
  18.         int i;
  19.         tcounter++;
  20.         scanf("lli",&n);
  21.  
  22.         int *A = (int*)malloc(sizeof(int)*n);
  23.         for(i=0;i<n;i++)
  24.             scanf("%d",(A+i));
  25.         int *B = (int*)malloc(sizeof(int)*n);
  26.         for(i=0;i<n;i++)
  27.             scanf("%d",(B+i));
  28.     }*/
  29.     return 0;
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement