-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfile1.cpp
More file actions
33 lines (31 loc) · 694 Bytes
/
file1.cpp
File metadata and controls
33 lines (31 loc) · 694 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#include <iostream>
using namespace std;
int main(void)
{
ios_base::sync_with_stdio(false);
cin.tie(0);
int n = 100u;
int b;
cin >> b;
cout << n << " " << b << endl;
for (int i = 0; i < n; i++)
{
for (int j = 0; j < n; j++)
{
if (i != j)
{
cout << " ";
}
else
{
cout << " ";
}
}
cout << endl;
}
}
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// Licensed to the Apache Software Foundation(ASF)
// Copyright (c) 2017 Intel Corporation
//