Skip to content

Instantly share code, notes, and snippets.

@saranya-vatti
Created May 7, 2017 16:01
Show Gist options
  • Save saranya-vatti/7cd3cb999b8acb6f930ba44b0a3de5ed to your computer and use it in GitHub Desktop.
Save saranya-vatti/7cd3cb999b8acb6f930ba44b0a3de5ed to your computer and use it in GitHub Desktop.
#include <math.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <assert.h>
#include <limits.h>
#include <stdbool.h>
int main(){
int t;
scanf("%d",&t);
for(int a0 = 0; a0 < t; a0++){
int n;
scanf("%d",&n);
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment