-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathVictory Day.cpp
35 lines (35 loc) · 1.14 KB
/
Victory Day.cpp
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
34
35
#include<bits/stdc++.h>
using namespace std;
int main()
{
int t,n;
cin>>t;
while(t--)
{
cin>>n;
switch(n)
{
case 1:
cout<<"Bir Sreshtho Captain Mohiuddin Jahangir: Amra Tomay Vulbo Na."<<endl;
break;
case 2:
cout<<"Bir Sreshtho Sepahi Hamidur Rahman: Amra Tomay Vulbo Na."<<endl;
break;
case 3:
cout<<"Bir Sreshtho Sepahi Muhammad Mustafa: Amra Tomay Vulbo Na."<<endl;
break;
case 4:
cout<<"Bir Sreshtho Engine Room Artificer Mohammad Ruhul Amin: Amra Tomay Vulbo Na."<<endl;
break;
case 5:
cout<<"Bir Sreshtho Flight Lieutenant Matiur Rahman: Amra Tomay Vulbo Na."<<endl;
break;
case 6:
cout<<"Bir Sreshtho Lance Naik Munshi Abdur Rouf: Amra Tomay Vulbo Na."<<endl;
break;
case 7:
cout<<"Bir Sreshtho Lance Naik Noor Mohammad Sheikh: Amra Tomay Vulbo Na."<<endl;
break;
}
}
}