Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/env python3
- # -*- coding: utf-8 -*-
- #include
- # Código em C
- int main(){
- # Código em Python
- def main():
- n = ""
- resposta = True
- # Código em C
- for(int i=0
- i < 8
- i++){
- cin >> n
- if(n > 1) resposta = false
- }
- # Código em python
- for n in range(8):
- print(n)
- if n > 1:
- resposta = False
- # Código em C
- if(resposta){
- cout << "S" << endl
- else
- cout << "F" <
- }
- # Código em Python
- if resposta:
- print("S")
- else:
- print("F")
- main() # invoca a função
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement