#include <bits/stdc++.h>
#include <time.h>
using namespace std;
int main()
{
    clock_t begin,end;
    double time;
    int n;
    cin>>n;
    begin=clock();
    for(int i=1;i<100;i++)
    {
        printf("Shawon\n");
    }
    end=clock();
    time=(double)(end-begin)/CLOCKS_PER_SEC;
    cout<<endl;
    cout<<"CPU Time= "<<time<<endl;
}
- Blogger Comment
 
- Facebook Comment
 
Subscribe to:
Post Comments
                            (
                            Atom
                            )
                          
0 comments:
Post a Comment