This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //======= Copyright (c) Valve Corporation, All rights reserved. =============== | |
| using UnityEngine; | |
| using System.Collections; | |
| namespace Valve.VR.Extras | |
| { | |
| public class SteamVR_LaserPointer : MonoBehaviour | |
| { | |
| public SteamVR_Behaviour_Pose pose; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def gojo(m, n): | |
| return m if n == 0 else gojo(n, m % n) | |
| x, y = map(int, input().split()) | |
| print(gojo(x, y)) |
NewerOlder