12461 - Airplane
EXPLANATION
Solution:
1 2 3 4 5 6 7 8 9 10 11 | #include<bits/stdc++.h> using namespace std; int main() { int n; while(cin >> n && n){ cout << "1/2\n"; } return 0; } |
let's start Code
1 2 3 4 5 6 7 8 9 10 11 | #include<bits/stdc++.h> using namespace std; int main() { int n; while(cin >> n && n){ cout << "1/2\n"; } return 0; } |
No comments:
Post a Comment